Branch :
| Author | Commit | Date | CI | Message |
|---|---|---|---|---|
| ca2b72c5 | 2020-01-14 21:45:01 | test: move thread into realtime class even on EVENT__DISABLE_THREAD_SUPPORT | ||
| d0adbc05 | 2020-01-14 10:20:12 | test: fix compilation without thread support (EVENT__DISABLE_THREAD_SUPPORT=ON) | ||
| 34d51e1b | 2020-01-14 00:27:21 | test: fix compilation under win32 (rearrange thread_setup() code) | ||
| e6285eed | 2020-01-13 22:24:54 | test: move threads created with THREAD_START() to realtime scheduling class too | ||
| 7af974ee | 2018-08-15 13:57:01 | test: make sure pthread is defined avoid warnings with any modern C99 compiler due to implicit function declaration for pthread_create, as shown by the following : test/regress_dns.c:2226:2: warning: implicit declaration of function 'pthread_create' is invalid in C99 [-Wimplicit-function-declaration] THREAD_START(thread[0], race_base_run, &rp); ^ test/regress_thread.h:35:2: note: expanded from macro 'THREAD_START' pthread_create(&(threadvar), NULL, fn, arg) ^ test/regress_dns.c:2226:2: warning: this function declaration is not a prototype [-Wstrict-prototypes] test/regress_thread.h:35:2: note: expanded from macro 'THREAD_START' pthread_create(&(threadvar), NULL, fn, arg) ^ $ clang --version Apple LLVM version 9.1.0 (clang-902.0.39.2) Target: x86_64-apple-darwin17.7.0 Thread model: posix InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin Closes: #686 (cherry-picked) | ||
| 8eedeabe | 2013-03-28 14:13:19 | Implement event_finalize() and related functions to avoid certain deadlocks |