]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/semaphore.cpp
Use the system call name as parameter to system_error
[libs/core.git] / source / core / semaphore.cpp
index 8fa1be90f7c7e234abde3e74409bfb916acbffb9..06e8435c3a34212599a8ead8817d28073c4c26cc 100644 (file)
@@ -53,13 +53,13 @@ void Semaphore::signal()
 {
 #ifdef WIN32
        if(!ReleaseSemaphore(priv->handle, 1, 0))
-               throw system_error("Semaphore::signal");
+               throw system_error("ReleaseSemaphore");
 #else
        MutexLock mlock(priv->mutex);
        if(priv->count<priv->limit)
                ++priv->count;
        if(int err = pthread_cond_signal(&priv->cond))
-               throw system_error("Semaphore::signal", err);
+               throw system_error("pthread_cond_signal", err);
 #endif
 }
 
@@ -68,12 +68,12 @@ void Semaphore::wait()
 #ifdef WIN32
        DWORD ret = WaitForSingleObject(priv->handle, INFINITE);
        if(ret==WAIT_FAILED)
-               throw system_error("Semaphore::wait");
+               throw system_error("WaitForSingleObject");
 #else
        MutexLock mlock(priv->mutex);
        while(!priv->count)
                if(int err = pthread_cond_wait(&priv->cond, &priv->mutex.priv->mutex))
-                       throw system_error("Semaphore::wait", err);
+                       throw system_error("pthread_cond_wait", err);
        --priv->count;
 #endif
 }
@@ -83,14 +83,14 @@ bool Semaphore::wait(const Time::TimeDelta &d)
 #ifdef WIN32
        DWORD ret = WaitForSingleObject(priv->handle, (DWORD)(d/Time::usec));
        if(ret==WAIT_FAILED)
-               throw system_error("Semaphore::wait");
+               throw system_error("WaitForSingleObject");
        return ret==WAIT_OBJECT_0;
 #else
        timespec timeout = Time::rawtime_to_timespec((Time::now()+d).raw());
 
        int err = pthread_cond_timedwait(&priv->cond, &priv->mutex.priv->mutex, &timeout);
        if(err && err!=ETIMEDOUT)
-               throw system_error("Semaphore::wait", err);
+               throw system_error("pthread_cond_timedwait", err);
        return err==0;
 #endif
 }