/** *[timerfd_create(2)](https://man7.org/linux/man-pages/man2/timerfd_create.2.html) creates a *timerfiledescriptor. * *Returnsthenewfiledescriptoronsuccess,andreturns-1andsets`errno`onfailure.
*/ int timerfd_create(clockid_t __clock, int __flags);
/** The timerfd_settime() flag to use absolute rather than relative times. */ #define TFD_TIMER_ABSTIME (1 << 0) /** The timerfd_settime() flag to cancel an absolute timer if the realtime clock changes. */ #define TFD_TIMER_CANCEL_ON_SET (1 << 1)
/** *[timerfd_settime(2)](https://man7.org/linux/man-pages/man2/timerfd_settime.2.html) starts or *stopsatimer. * *Returns0onsuccess,andreturns-1andsets`errno`onfailure.
*/ int timerfd_settime(int __fd, int __flags, conststruct itimerspec* _Nonnull __new_value, struct itimerspec* _Nullable __old_value);
/** *[timerfd_gettime(2)](https://man7.org/linux/man-pages/man2/timerfd_gettime.2.html) queries the *currenttimersettings. * *Returns0onsuccess,andreturns-1andsets`errno`onfailure.
*/ int timerfd_gettime(int __fd, struct itimerspec* _Nonnull __current_value);
__END_DECLS
Messung V0.5 in Prozent
¤ Diese beiden folgenden Angebotsgruppen bietet das Unternehmen0.12Angebot
(Wie Sie bei der Firma Beratungs- und Dienstleistungen beauftragen können 2026-06-28)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.