logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

itimerspec - interval for a timer with nanosecond precision

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 */
       };

See Also