From de2a4036cbfd5e41a5bdd2b81122b7765729af83 Mon Sep 17 00:00:00 2001 From: Masaru Tsuchiyama Date: Sun, 8 Oct 2023 02:33:22 +0900 Subject: 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 Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Co-authored-by: Erlend E. Aasland Co-authored-by: Victor Stinner --- pyconfig.h.in | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'pyconfig.h.in') 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 header file. */ #undef HAVE_SYS_TERMIO_H +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_TIMERFD_H + /* Define to 1 if you have the 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 -- cgit v1.2.3