itimerspec - interval for a timer with nanosecond precision
Contents
Description
Describes the initial expiration of a timer, and its interval, in seconds and nanoseconds.
History
POSIX.1-2001.
Library
Standard C library (libc)
Name
itimerspec - interval for a timer with nanosecond precision
See Also
timerfd_create(2), timer_settime(2), timespec(3type) Linux man-pages 6.9.1 2024-05-02 itimerspec(3type)
Standards
POSIX.1-2008.
Synopsis
#include<time.h>structitimerspec{structtimespecit_interval; /* Interval for periodic timer */
structtimespecit_value; /* Initial expiration */
};