Next: posix time functions, Previous: posix time itimerval, Up: posix time [Index]
struct-itimerspec
Structure representing interval timer specifications (ITimerSpec).
Scheme level representation of struct itimerspec
, see the manual
pages timer_create(2)
and timerfd_create(2)
. It has the
following fields:
it_interval
An instance of struct-timespec
representing the period between
successive timer interrupts, in seconds and nanoseconds. posix time timespec for details on struct-timespec
.
it_value
An instance of struct-timespec
representing the time interval
between now and the first timer interrupt, in seconds and nanoseconds.
posix time timespec for details on struct-timespec
.
Build and return a new instance of struct-itimerspec
. When
called with no arguments: two new instances of struct-timespec
are allocated and initialised to zero values, then used as field values.
Return true if obj is an instance of struct-itimerspec
.
Accessors for the fields of struct-itimerspec
.