thread.hpp cstddef /usr/include/gecode/support.hh Gecode::Support::Mutex Gecode::Support::Lock Gecode::Support::Event Gecode::Support::Runnable Gecode::Support::Thread Gecode::Support::Thread::Run Gecode Gecode::Support /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2009 * *Bugfixesprovidedby: *DavidRijsman<david.rijsman@quintiq.com> * *Lastmodified: *$Date:2013-10-1500:46:56+0200(Tue,15Oct2013)$by$Author:tack$ *$Revision:14025$ * *ThisfileispartofGecode,thegenericconstraint *developmentenvironment: *http://www.gecode.org * *Permissionisherebygranted,freeofcharge,toanypersonobtaining *acopyofthissoftwareandassociateddocumentationfiles(the *"Software"),todealintheSoftwarewithoutrestriction,including *withoutlimitationtherightstouse,copy,modify,merge,publish, *distribute,sublicense,and/orsellcopiesoftheSoftware,andto *permitpersonstowhomtheSoftwareisfurnishedtodoso,subjectto *thefollowingconditions: * *Theabovecopyrightnoticeandthispermissionnoticeshallbe *includedinallcopiesorsubstantialportionsoftheSoftware. * *THESOFTWAREISPROVIDED"ASIS",WITHOUTWARRANTYOFANYKIND, *EXPRESSORIMPLIED,INCLUDINGBUTNOTLIMITEDTOTHEWARRANTIESOF *MERCHANTABILITY,FITNESSFORAPARTICULARPURPOSEAND *NONINFRINGEMENT.INNOEVENTSHALLTHEAUTHORSORCOPYRIGHTHOLDERSBE *LIABLEFORANYCLAIM,DAMAGESOROTHERLIABILITY,WHETHERINANACTION *OFCONTRACT,TORTOROTHERWISE,ARISINGFROM,OUTOFORINCONNECTION *WITHTHESOFTWAREORTHEUSEOROTHERDEALINGSINTHESOFTWARE. * */ #include<cstddef> #ifdefGECODE_THREADS_WINDOWS #ifndefNOMINMAX #defineNOMINMAX #endif #ifndef_WIN32_WINNT #define_WIN32_WINNT0x400 #endif #ifndefWIN32_LEAN_AND_MEAN #defineWIN32_LEAN_AND_MEAN #endif #include<windows.h> #endif #ifdefGECODE_THREADS_PTHREADS #include<pthread.h> #ifdefGECODE_THREADS_OSX #include<libkern/OSAtomic.h> #endif #endif namespaceGecode{namespaceSupport{ classMutex{ private: #ifdefGECODE_THREADS_WINDOWS CRITICAL_SECTIONw_cs; #endif #ifdefGECODE_THREADS_PTHREADS pthread_mutex_tp_m; #endif public: Mutex(void); voidacquire(void); booltryacquire(void); voidrelease(void); ~Mutex(void); staticvoid*operatornew(size_ts); staticvoidoperatordelete(void*p); private: Mutex(constMutex&){} voidoperator=(constMutex&){} }; #ifdefined(GECODE_THREADS_WINDOWS)||!defined(GECODE_THREADS_PTHREADS) typedefMutexFastMutex; #endif #ifdefGECODE_THREADS_PTHREADS #ifdefined(GECODE_THREADS_OSX)||defined(GECODE_THREADS_PTHREADS_SPINLOCK) classFastMutex{ private: #ifdefGECODE_THREADS_OSX OSSpinLocklck; #else pthread_spinlock_tp_s; #endif public: FastMutex(void); voidacquire(void); booltryacquire(void); voidrelease(void); ~FastMutex(void); staticvoid*operatornew(size_ts); staticvoidoperatordelete(void*p); private: FastMutex(constFastMutex&){} voidoperator=(constFastMutex&){} }; #else typedefMutexFastMutex; #endif #endif classLock{ private: Mutex&m; public: Lock(Mutex&m0); ~Lock(void); private: Lock(constLock&l):m(l.m){} voidoperator=(constLock&){} }; classEvent{ private: #ifdefGECODE_THREADS_WINDOWS HANDLEw_h; #endif #ifdefGECODE_THREADS_PTHREADS pthread_mutex_tp_m; pthread_cond_tp_c; boolp_s; #endif public: Event(void); voidsignal(void); voidwait(void); ~Event(void); private: Event(constEvent&){} voidoperator=(constEvent&){} }; classRunnable{ public: virtualvoidrun(void)=0; virtual~Runnable(void){} staticvoid*operatornew(size_ts); staticvoidoperatordelete(void*p); }; classThread{ public: classRun{ public: Run*n; Runnable*r; Evente; Mutexm; GECODE_SUPPORT_EXPORTRun(Runnable*r); GECODE_SUPPORT_EXPORTvoidexec(void); voidrun(Runnable*r); staticvoid*operatornew(size_ts); staticvoidoperatordelete(void*p); }; GECODE_SUPPORT_EXPORTstaticMutex*m(void); GECODE_SUPPORT_EXPORTstaticRun*idle; public: staticvoidrun(Runnable*r); staticvoidsleep(unsignedintms); staticunsignedintnpu(void); private: Thread(constThread&){} voidoperator=(constThread&){} }; }} //STATISTICS:support-any