none.hpp /usr/include/gecode/support.hh Gecode Gecode::Support /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2009 * *Lastmodified: *$Date:2011-09-1914:02:05+0200(Mon,19Sep2011)$by$Author:schulte$ *$Revision:12399$ * *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. * */ namespaceGecode{namespaceSupport{ /* *Mutex */ forceinline Mutex::Mutex(void){} forceinlinevoid Mutex::acquire(void){} forceinlinebool Mutex::tryacquire(void){ returntrue; } forceinlinevoid Mutex::release(void){} forceinline Mutex::~Mutex(void){} /* *Event */ forceinline Event::Event(void){} forceinlinevoid Event::signal(void){} forceinlinevoid Event::wait(void){} forceinline Event::~Event(void){} /* *Thread */ inline Thread::Run::Run(Runnable*){ throwOperatingSystemError("Thread::run[Threadsnotsupported]"); } forceinlinevoid Thread::sleep(unsignedint){} forceinlineunsignedint Thread::npu(void){ return1; } }} //STATISTICS:support-any