diff options
author | Inada Naoki <methane@users.noreply.github.com> | 2019-02-20 01:00:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-20 01:00:09 (GMT) |
commit | 001fee14e0f2ba5f41fb733adc69d5965925a094 (patch) | |
tree | 1f43d3cd42920f5ef131b840c444332d4023de90 /pyconfig.h.in | |
parent | 46a97920feaf4094436b2cdb32d2bd2fab3b59a5 (diff) | |
download | cpython-001fee14e0f2ba5f41fb733adc69d5965925a094.zip cpython-001fee14e0f2ba5f41fb733adc69d5965925a094.tar.gz cpython-001fee14e0f2ba5f41fb733adc69d5965925a094.tar.bz2 |
bpo-12822: use monotonic clock for condvar if possible (GH-11723)
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index ab9e9e1..8db06d9 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -765,6 +765,9 @@ /* Define if your compiler supports function prototype */ #undef HAVE_PROTOTYPES +/* Define to 1 if you have the `pthread_condattr_setclock' function. */ +#undef HAVE_PTHREAD_CONDATTR_SETCLOCK + /* Defined for Solaris 2.6 bug in pthread header. */ #undef HAVE_PTHREAD_DESTRUCTOR |