mirror of
https://forge.sourceware.org/marek/gcc.git
synced 2026-02-22 12:00:11 -05:00
Merge upstream druntime 47688279. Reviewed-on: https://github.com/dlang/druntime/pull/3073 Fixes: PR d/90718 Fixes: PR d/90719 libphobos/ChangeLog: * libdruntime/Makefile.am (DRUNTIME_DSOURCES_LINUX): Remove core/sys/linux/sys/netinet/tcp.d. * libdruntime/Makefile.in: Regenerate.
26 lines
687 B
D
26 lines
687 B
D
/**
|
|
* D header file to interface with the Linux timefd API <http://man7.org/linux/man-pages/man2/timerfd_create.2.html>
|
|
* Available since Linux 2.6
|
|
*
|
|
* License : $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
|
*/
|
|
module core.sys.linux.timerfd;
|
|
|
|
version (linux):
|
|
|
|
public import core.sys.posix.time;
|
|
|
|
extern (C):
|
|
@system:
|
|
@nogc:
|
|
nothrow:
|
|
|
|
int timerfd_create(int clockid, int flags);
|
|
int timerfd_settime(int fd, int flags, const itimerspec* new_value, itimerspec* old_value);
|
|
int timerfd_gettime(int fd, itimerspec* curr_value);
|
|
|
|
enum TFD_TIMER_ABSTIME = 1 << 0;
|
|
enum TFD_TIMER_CANCEL_ON_SET = 1 << 1;
|
|
enum TFD_CLOEXEC = 0x80000;
|
|
enum TFD_NONBLOCK = 0x800;
|