diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-02-11 01:42:33 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@ydb.tech> | 2024-02-14 14:25:43 +0000 |
commit | bc891c35d94ba3f0690fa7d88e2ceb4108990606 (patch) | |
tree | 56805f88168d3e21e18f78120313fe9e15c445c7 /contrib/tools/python/src/Python/thread.c | |
parent | da0b2f611b118cda7d3dd5d111864d8f72ce3c12 (diff) | |
download | ydb-bc891c35d94ba3f0690fa7d88e2ceb4108990606.tar.gz |
Intermediate changes
Diffstat (limited to 'contrib/tools/python/src/Python/thread.c')
-rw-r--r-- | contrib/tools/python/src/Python/thread.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/contrib/tools/python/src/Python/thread.c b/contrib/tools/python/src/Python/thread.c index aa4190cb08..48beda0512 100644 --- a/contrib/tools/python/src/Python/thread.c +++ b/contrib/tools/python/src/Python/thread.c @@ -101,7 +101,7 @@ PyThread_init_thread(void) static size_t _pythread_stacksize = 0; #ifdef SGI_THREADS -#include "thread_sgi.h" +#error #include "thread_sgi.h" #endif #ifdef SOLARIS_THREADS @@ -109,11 +109,11 @@ static size_t _pythread_stacksize = 0; #endif #ifdef SUN_LWP -#include "thread_lwp.h" +#error #include "thread_lwp.h" #endif #ifdef HAVE_PTH -#include "thread_pth.h" +#error #include "thread_pth.h" #undef _POSIX_THREADS #endif @@ -130,19 +130,19 @@ static size_t _pythread_stacksize = 0; #endif #ifdef OS2_THREADS -#include "thread_os2.h" +#error #include "thread_os2.h" #endif #ifdef BEOS_THREADS -#include "thread_beos.h" +#error #include "thread_beos.h" #endif #ifdef PLAN9_THREADS -#include "thread_plan9.h" +#error #include "thread_plan9.h" #endif #ifdef ATHEOS_THREADS -#include "thread_atheos.h" +#error #include "thread_atheos.h" #endif /* |