Generated on Mon Jul 6 18:09:20 2009 for Gecode by doxygen 1.5.9

windows.hpp

Go to the documentation of this file.
00001 /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
00002 /*
00003  *  Main authors:
00004  *     Christian Schulte <schulte@gecode.org>
00005  *
00006  *  Copyright:
00007  *     Christian Schulte, 2009
00008  *
00009  *  Last modified:
00010  *     $Date: 2009-05-06 21:57:12 +0200 (Wed, 06 May 2009) $ by $Author: schulte $
00011  *     $Revision: 9008 $
00012  *
00013  *  This file is part of Gecode, the generic constraint
00014  *  development environment:
00015  *     http://www.gecode.org
00016  *
00017  *  Permission is hereby granted, free of charge, to any person obtaining
00018  *  a copy of this software and associated documentation files (the
00019  *  "Software"), to deal in the Software without restriction, including
00020  *  without limitation the rights to use, copy, modify, merge, publish,
00021  *  distribute, sublicense, and/or sell copies of the Software, and to
00022  *  permit persons to whom the Software is furnished to do so, subject to
00023  *  the following conditions:
00024  *
00025  *  The above copyright notice and this permission notice shall be
00026  *  included in all copies or substantial portions of the Software.
00027  *
00028  *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
00029  *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
00030  *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
00031  *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
00032  *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
00033  *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
00034  *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
00035  *
00036  */
00037 
00038 #ifdef GECODE_THREADS_WINDOWS
00039 
00040 namespace Gecode { namespace Support {
00041 
00042   /*
00043    * Thread
00044    */
00045   forceinline void
00046   Thread::sleep(unsigned int ms) {
00047     Sleep(static_cast<DWORD>(ms));
00048   }
00049 
00050   forceinline unsigned int
00051   Thread::npu(void) {
00052     SYSTEM_INFO si;
00053     GetSystemInfo(&si);
00054     return static_cast<unsigned int>(si.dwNumberOfProcessors);
00055   }
00056 
00057   forceinline
00058   Thread::~Thread(void) {
00059     if (CloseHandle(w_h) == 0)
00060       throw OperatingSystemError("Thread::~Thread[Windows::CloseHandle]");
00061   }
00062 
00063 
00064   /*
00065    * Mutex
00066    */
00067   forceinline
00068   Mutex::Mutex(void) {
00069     InitializeCriticalSection(&w_cs);
00070   }
00071   forceinline void
00072   Mutex::acquire(void) {
00073     EnterCriticalSection(&w_cs);
00074   }
00075   forceinline bool
00076   Mutex::tryacquire(void) {
00077     return TryEnterCriticalSection(&w_cs) != 0;
00078   }
00079   forceinline void
00080   Mutex::release(void) {
00081     LeaveCriticalSection(&w_cs);
00082   }
00083   forceinline
00084   Mutex::~Mutex(void) {
00085     DeleteCriticalSection(&w_cs);
00086   }
00087 
00088 
00089   /*
00090    * Event
00091    */
00092   forceinline
00093   Event::Event(void)
00094     : w_h(CreateEvent(NULL, FALSE, FALSE, NULL)) {
00095     if (w_h == NULL)
00096       throw OperatingSystemError("Event::Event[Windows::CreateEvent]");
00097   }
00098   forceinline void
00099   Event::signal(void) {
00100     if (SetEvent(w_h) == 0)
00101       throw OperatingSystemError("Event::signal[Windows::SetEvent]");
00102   }
00103   forceinline void
00104   Event::wait(void) {
00105     if (WaitForSingleObject(w_h,INFINITE) != 0)
00106       throw OperatingSystemError("Event::wait[Windows::WaitForSingleObject]");
00107   }
00108   forceinline
00109   Event::~Event(void) {
00110     if (CloseHandle(w_h) == 0)
00111       throw OperatingSystemError("Event::~Event[Windows::CloseHandle]");
00112   }
00113 
00114 
00115 }}
00116 
00117 #endif
00118 
00119 // STATISTICS: support-any