X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FSystem%2FMutex.cpp;h=81dcd3b418b8b6962704ff68f055bbf7ff7dfb5a;hb=95df6b3603e228cea714be21997fec82cb03011e;hp=467bc8522bb3f67ba7fccb6fb705e45f0901b89d;hpb=a5370172b64bed5daf8e2869d7bf7cb52f80d6b7;p=oota-llvm.git diff --git a/lib/System/Mutex.cpp b/lib/System/Mutex.cpp index 467bc8522bb..81dcd3b418b 100644 --- a/lib/System/Mutex.cpp +++ b/lib/System/Mutex.cpp @@ -2,8 +2,8 @@ // // The LLVM Compiler Infrastructure // -// This file was developed by Reid Spencer and is distributed under the -// University of Illinois Open Source License. See LICENSE.TXT for details. +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // @@ -13,7 +13,6 @@ #include "llvm/Config/config.h" #include "llvm/System/Mutex.h" -#include "llvm/System/IncludeFile.h" //===----------------------------------------------------------------------===// //=== WARNING: Implementation here must contain only TRULY operating system @@ -76,7 +75,7 @@ Mutex::Mutex( bool recursive) errorcode = pthread_mutexattr_settype(&attr, kind); assert(errorcode == 0); -#if !defined(__FreeBSD__) && !defined(__OpenBSD__) +#if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__) // Make it a process local mutex errorcode = pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_PRIVATE); #endif @@ -99,9 +98,9 @@ Mutex::~Mutex() { if (pthread_enabled) { - pthread_mutex_t* mutex = reinterpret_cast(data_); + pthread_mutex_t* mutex = static_cast(data_); assert(mutex != 0); - int errorcode = pthread_mutex_destroy(mutex); + pthread_mutex_destroy(mutex); assert(mutex != 0); } } @@ -111,7 +110,7 @@ Mutex::acquire() { if (pthread_enabled) { - pthread_mutex_t* mutex = reinterpret_cast(data_); + pthread_mutex_t* mutex = static_cast(data_); assert(mutex != 0); int errorcode = pthread_mutex_lock(mutex); @@ -125,7 +124,7 @@ Mutex::release() { if (pthread_enabled) { - pthread_mutex_t* mutex = reinterpret_cast(data_); + pthread_mutex_t* mutex = static_cast(data_); assert(mutex != 0); int errorcode = pthread_mutex_unlock(mutex); @@ -139,7 +138,7 @@ Mutex::tryacquire() { if (pthread_enabled) { - pthread_mutex_t* mutex = reinterpret_cast(data_); + pthread_mutex_t* mutex = static_cast(data_); assert(mutex != 0); int errorcode = pthread_mutex_trylock(mutex); @@ -159,4 +158,3 @@ Mutex::tryacquire() #endif #endif -DEFINING_FILE_FOR(SystemMutex)