From 2250322d41079a0e5c773c702c78bd5e7d9d6e4d Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Fri, 1 Dec 2006 18:17:16 +0000 Subject: [PATCH] trylock --- stepmania/src/arch/Threads/Threads_Pthreads.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/arch/Threads/Threads_Pthreads.cpp b/stepmania/src/arch/Threads/Threads_Pthreads.cpp index 16d1001d3c..cd16b5abb5 100644 --- a/stepmania/src/arch/Threads/Threads_Pthreads.cpp +++ b/stepmania/src/arch/Threads/Threads_Pthreads.cpp @@ -185,7 +185,7 @@ bool MutexImpl_Pthreads::TryLock() if( ret == EBUSY ) return false; if( ret ) - RageException::Throw( "pthread_mutex_lock failed: %s", strerror(errno) ); + RageException::Throw( "pthread_mutex_trylock failed: %s", strerror(errno) ); return true; }