posix_features.hpp /usr/include/gecode/third-party/boost/config/platform/aix.hpp /usr/include/gecode/third-party/boost/config/platform/beos.hpp /usr/include/gecode/third-party/boost/config/platform/bsd.hpp /usr/include/gecode/third-party/boost/config/platform/cygwin.hpp /usr/include/gecode/third-party/boost/config/platform/hpux.hpp /usr/include/gecode/third-party/boost/config/platform/irix.hpp /usr/include/gecode/third-party/boost/config/platform/linux.hpp /usr/include/gecode/third-party/boost/config/platform/qnxnto.hpp /usr/include/gecode/third-party/boost/config/platform/solaris.hpp /usr/include/gecode/third-party/boost/config/platform/vxworks.hpp //(C)CopyrightJohnMaddock2001-2003. //Use,modificationanddistributionaresubjecttothe //BoostSoftwareLicense,Version1.0.(Seeaccompanyingfile //LICENSE_1_0.txtorcopyathttp://www.boost.org/LICENSE_1_0.txt) //Seehttp://www.boost.orgformostrecentversion. //AllPOSIXfeaturetestsgointhisfile, //Notethatwetest_POSIX_C_SOURCEand_XOPEN_SOURCEaswell //_POSIX_VERSIONand_XOPEN_VERSION:onsomesystemsPOSIXAPI's //maybepresentbutnone-functionalunless_POSIX_C_SOURCEand //_XOPEN_SOURCEhavebeendefinedtotherightvalue(it'sup //totheusertodothis*before*includinganyheader,although //inmostcasesthecompilerwilldothisforyou). #ifdefined(BOOST_HAS_UNISTD_H) #include<unistd.h> //XOpenhas<nl_types.h>,butisthisthecorrectversioncheck? #ifdefined(_XOPEN_VERSION)&&(_XOPEN_VERSION>=3) #defineBOOST_HAS_NL_TYPES_H #endif //POSIXversion6requires<stdint.h> #ifdefined(_POSIX_VERSION)&&(_POSIX_VERSION>=200100) #defineBOOST_HAS_STDINT_H #endif //POSIXversion2requires<dirent.h> #ifdefined(_POSIX_VERSION)&&(_POSIX_VERSION>=199009L) #defineBOOST_HAS_DIRENT_H #endif //POSIXversion3requires<signal.h>tohavesigaction: #ifdefined(_POSIX_VERSION)&&(_POSIX_VERSION>=199506L) #defineBOOST_HAS_SIGACTION #endif //POSIXdefines_POSIX_THREADS>0forpthreadsupport, //howeversomeplatformsdefine_POSIX_THREADSwithout //avalue,hencethe(_POSIX_THREADS+0>=0)check. //Strictlyspeakingthismaycatchplatformswitha //non-functioningstub<pthreads.h>,butsuchoccurrencesshould //occurveryrarelyifatall. #ifdefined(_POSIX_THREADS)&&(_POSIX_THREADS+0>=0)&&!defined(BOOST_HAS_WINTHREADS)&&!defined(BOOST_HAS_MPTASKS) #defineBOOST_HAS_PTHREADS #endif //BOOST_HAS_NANOSLEEP: //Thisispredicatedon_POSIX_TIMERSor_XOPEN_REALTIME: #if(defined(_POSIX_TIMERS)&&(_POSIX_TIMERS+0>=0))\ ||(defined(_XOPEN_REALTIME)&&(_XOPEN_REALTIME+0>=0)) #defineBOOST_HAS_NANOSLEEP #endif //BOOST_HAS_CLOCK_GETTIME: //Thisispredicatedon_POSIX_TIMERS(alsoon_XOPEN_REALTIME //butatleastoneplatform-linux-definesthatflagwithout //definingclock_gettime): #if(defined(_POSIX_TIMERS)&&(_POSIX_TIMERS+0>=0)) #defineBOOST_HAS_CLOCK_GETTIME #endif //BOOST_HAS_SCHED_YIELD: //Thisispredicatedon_POSIX_PRIORITY_SCHEDULINGor //on_POSIX_THREAD_PRIORITY_SCHEDULINGoron_XOPEN_REALTIME. #ifdefined(_POSIX_PRIORITY_SCHEDULING)&&(_POSIX_PRIORITY_SCHEDULING+0>0)\ ||(defined(_POSIX_THREAD_PRIORITY_SCHEDULING)&&(_POSIX_THREAD_PRIORITY_SCHEDULING+0>0))\ ||(defined(_XOPEN_REALTIME)&&(_XOPEN_REALTIME+0>=0)) #defineBOOST_HAS_SCHED_YIELD #endif //BOOST_HAS_GETTIMEOFDAY: //BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE: //Thesearepredicatedon_XOPEN_VERSION,andappearstobefirstreleased //inissue4,version2(_XOPEN_VERSION>500). //Likewiseforthefunctionslog1pandexpm1. #ifdefined(_XOPEN_VERSION)&&(_XOPEN_VERSION+0>=500) #defineBOOST_HAS_GETTIMEOFDAY #ifdefined(_XOPEN_SOURCE)&&(_XOPEN_SOURCE+0>=500) #defineBOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE #endif #ifndefBOOST_HAS_LOG1P #defineBOOST_HAS_LOG1P #endif #ifndefBOOST_HAS_EXPM1 #defineBOOST_HAS_EXPM1 #endif #endif #endif