File tree Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,7 @@ extern "C" {
16
16
# ifdef HAVE_PTHREAD_H
17
17
# include <pthread.h> /* _POSIX_THREADS */
18
18
# endif
19
- #endif
20
-
21
- #ifndef _POSIX_THREADS
22
-
19
+ # ifndef _POSIX_THREADS
23
20
/* Check if we're running on HP-UX and _SC_THREADS is defined. If so, then
24
21
enough of the Posix threads package is implemented to support python
25
22
threads.
@@ -28,12 +25,12 @@ extern "C" {
28
25
a check of __ia64 to verify that we're running on an ia64 system instead
29
26
of a pa-risc system.
30
27
*/
31
- #ifdef __hpux
32
- #ifdef _SC_THREADS
33
- #define _POSIX_THREADS
34
- #endif
35
- #endif
36
-
28
+ # ifdef __hpux
29
+ # ifdef _SC_THREADS
30
+ # define _POSIX_THREADS
31
+ # endif
32
+ # endif
33
+ # endif /* _POSIX_THREADS */
37
34
#endif /* _POSIX_THREADS */
38
35
39
36
#if defined(_POSIX_THREADS ) && !defined(HAVE_PTHREAD_STUBS )
You can’t perform that action at this time.
0 commit comments