From 13ff24582c99dfb439b1af7295b401415e7eb05b Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 22 Jan 2018 18:32:50 +0100 Subject: bpo-32593: Drop FreeBSD 9 and older support (#5232) Drop support of FreeBSD 9 and older. --- Python/thread_pthread.h | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'Python/thread_pthread.h') diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h index b7463c0ca6..697140558f 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 -#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 -- cgit v1.2.1