diff options
author | Masaru Tsuchiyama <m.tmatma@gmail.com> | 2023-10-08 02:33:22 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-07 19:33:22 +0200 |
commit | de2a4036cbfd5e41a5bdd2b81122b7765729af83 (patch) | |
tree | 44b739676b2707fddf3404882ae4b0e870cf0ce0 /pyconfig.h.in | |
parent | 64f158e7b09e67d0bf5c8603ff88c86ed4e8f8fd (diff) | |
download | cpython-de2a4036cbfd5e41a5bdd2b81122b7765729af83.tar.gz cpython-de2a4036cbfd5e41a5bdd2b81122b7765729af83.zip |
gh-108277: Add os.timerfd_create() function (#108382)
Add wrapper for timerfd_create, timerfd_settime, and timerfd_gettime to os module.
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index c2c75c96dca..9924a9011ed 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -1363,6 +1363,9 @@ /* Define to 1 if you have the <sys/termio.h> header file. */ #undef HAVE_SYS_TERMIO_H +/* Define to 1 if you have the <sys/timerfd.h> header file. */ +#undef HAVE_SYS_TIMERFD_H + /* Define to 1 if you have the <sys/times.h> header file. */ #undef HAVE_SYS_TIMES_H @@ -1405,6 +1408,9 @@ /* Define to 1 if you have the `timegm' function. */ #undef HAVE_TIMEGM +/* Define if you have the 'timerfd_create' function. */ +#undef HAVE_TIMERFD_CREATE + /* Define to 1 if you have the `times' function. */ #undef HAVE_TIMES |