diff options
author | Guido van Rossum <guido@python.org> | 1997-06-02 22:25:45 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-06-02 22:25:45 (GMT) |
commit | 46ff1903a3bdc34fd721380033fdf3209a3579b8 (patch) | |
tree | 6fe2c2c01485be618828565fe4f9366b0f91768c /Python/thread_pthread.h | |
parent | ec4f4ac8c0f53b2afdf7ccb3a349f1d85ecca425 (diff) | |
download | cpython-46ff1903a3bdc34fd721380033fdf3209a3579b8.zip cpython-46ff1903a3bdc34fd721380033fdf3209a3579b8.tar.gz cpython-46ff1903a3bdc34fd721380033fdf3209a3579b8.tar.bz2 |
Add default case (standard conformance) to avoid piling up
system specific #ifdefs.
Diffstat (limited to 'Python/thread_pthread.h')
-rw-r--r-- | Python/thread_pthread.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h index 8e6ca86..5b70fa4 100644 --- a/Python/thread_pthread.h +++ b/Python/thread_pthread.h @@ -66,12 +66,12 @@ PERFORMANCE OF THIS SOFTWARE. # define PY_PTHREAD_D7 # endif -#elif defined(__unix) && defined(__sparc) -# define PY_PTHREAD_STD -#elif defined(__linux) -# define PY_PTHREAD_STD #elif defined(__DGUX) # define PY_PTHREAD_D6 + +#else /* Default case */ +# define PY_PTHREAD_STD + #endif |