diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2018-01-22 17:32:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-22 17:32:50 (GMT) |
commit | 13ff24582c99dfb439b1af7295b401415e7eb05b (patch) | |
tree | 6966d9e1247134dfee9db73b6b5a215bfa88baf4 /Python | |
parent | b0a7a037b8fde56b62f886d5188bced7776777b4 (diff) | |
download | cpython-13ff24582c99dfb439b1af7295b401415e7eb05b.zip cpython-13ff24582c99dfb439b1af7295b401415e7eb05b.tar.gz cpython-13ff24582c99dfb439b1af7295b401415e7eb05b.tar.bz2 |
bpo-32593: Drop FreeBSD 9 and older support (#5232)
Drop support of FreeBSD 9 and older.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/thread_pthread.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h index b7463c0..6971405 100644 --- a/Python/thread_pthread.h +++ b/Python/thread_pthread.h @@ -56,16 +56,6 @@ #endif #endif -/* Before FreeBSD 5.4, system scope threads was very limited resource - in default setting. So the process scope is preferred to get - enough number of threads to work. */ -#ifdef __FreeBSD__ -#include <osreldate.h> -#if __FreeBSD_version >= 500000 && __FreeBSD_version < 504101 -#undef PTHREAD_SYSTEM_SCHED_SUPPORTED -#endif -#endif - #if !defined(pthread_attr_default) # define pthread_attr_default ((pthread_attr_t *)NULL) #endif |