aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/tools/python/src/Python/thread.c
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-02-11 01:42:33 +0300
committerDaniil Cherednik <dcherednik@ydb.tech>2024-02-14 14:25:43 +0000
commitbc891c35d94ba3f0690fa7d88e2ceb4108990606 (patch)
tree56805f88168d3e21e18f78120313fe9e15c445c7 /contrib/tools/python/src/Python/thread.c
parentda0b2f611b118cda7d3dd5d111864d8f72ce3c12 (diff)
downloadydb-bc891c35d94ba3f0690fa7d88e2ceb4108990606.tar.gz
Intermediate changes
Diffstat (limited to 'contrib/tools/python/src/Python/thread.c')
-rw-r--r--contrib/tools/python/src/Python/thread.c14
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
/*