diff options
author | Nicolai Hähnle <nicolai.haehnle@amd.com> | 2017-11-15 12:41:58 +0100 |
---|---|---|
committer | Nicolai Hähnle <nicolai.haehnle@amd.com> | 2017-11-16 06:45:35 +0100 |
commit | 2e3d0dd6c8f405f27d68b1ac35e928233bf8b89c (patch) | |
tree | 547b3b7677d9d5879504885c45eaefe498691280 /include | |
parent | a8bdf0e0c4c792634551c14e2dd02d72b75a8db5 (diff) |
threads,configure.ac,meson.build: define and use HAVE_TIMESPEC_GET
Tested with Travis and Appveyor.
v2: add HAVE_TIMESPEC_GET for non-Windows Scons builds
v3: use check_functions in Scons (Eric)
Cc: Rob Herring <robh@kernel.org>
Cc: Alexander von Gluck IV <kallisti5@unixzen.com>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103674
Fixes: f1a364878431 ("threads: update for late C11 changes")
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
Reviewed-by: Jon Turney <jon.turney@dronecode.org.uk> (v2)
Diffstat (limited to 'include')
-rw-r--r-- | include/c11/threads_posix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/c11/threads_posix.h b/include/c11/threads_posix.h index 2d7ac1326d..45cb6075e6 100644 --- a/include/c11/threads_posix.h +++ b/include/c11/threads_posix.h @@ -382,7 +382,7 @@ tss_set(tss_t key, void *val) /*-------------------- 7.25.7 Time functions --------------------*/ // 7.25.6.1 -#ifdef __HAIKU__ +#ifndef HAVE_TIMESPEC_GET static inline int timespec_get(struct timespec *ts, int base) { |