[Previous] [Contents] [Index] [Next]

TimerCreate(), TimerCreate_r()

Create a timer for a process

Synopsis:

#include <sys/neutrino.h>

int TimerCreate( clockid_t id,
                 const struct sigevent *event );

int TimerCreate_r( clockid_t id,
                   const struct sigevent *event );

Arguments:

id
The timing base; supported types are:
event
A pointer to a sigevent structure that contains the event to deliver when the timer fires; see below.

Library:

libc

Description:

The TimerCreate() kernel call creates a per-process timer using the clock specified by id as the timing base.

The TimerCreate() and TimerCreate_r() functions are identical except in the way they indicate errors. See the Returns section for details.

Use the returned timer ID in subsequent calls to the other timer functions.

The timer is created in the disabled state, and isn't enabled until you call TimerSettime().

The sigevent structure pointed to by event contains the event to deliver when the timer fires. We recommend the following event types in this case:

Blocking states

These calls don't block.

Returns:

The only difference between these functions is the way they indicate errors:

TimerCreate()
The timer ID of the newly created timer. If an error occurs, -1 is returned and errno is set.
TimerCreate_r()
The timer ID of the newly created timer. This function does NOT set errno. If an error occurs, the negative of a value from the Errors section is returned.

Errors:

EINVAL
The clock ID isn't valid.
EAGAIN
All kernel timer objects are in use.
EFAULT
A fault occurred when the kernel tried to access the buffers provided.

Classification:

QNX 6

Safety:
Cancellation point No
Interrupt handler No
Signal handler Yes
Thread Yes

See also:

sigevent, TimerAlarm(), TimerDestroy(), TimerInfo(), TimerSettime(), TimerTimeout()


[Previous] [Contents] [Index] [Next]