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
committerrobot-piglet <robot-piglet@yandex-team.com>2024-02-11 01:52:08 +0300
commit24d7abf3b5ce5026214f0cf1a0d518e30cb8ef76 (patch)
tree69788f265db20e7c04a8ffc72b91ba317242aff8 /contrib/tools/python/src/Python/thread.c
parent325df06adaf943db9b88c447759e311dda6cd88e (diff)
downloadydb-24d7abf3b5ce5026214f0cf1a0d518e30cb8ef76.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
/*