* thread.cc (pthread_mutex::initMutex): Remove \n from api_fatal.

This commit is contained in:
Christopher Faylor 2002-09-30 15:11:55 +00:00
parent bd2b5664a1
commit 66dca8bb0d
2 changed files with 5 additions and 2 deletions

View File

@ -1,9 +1,12 @@
2002-09-30 Christopher Faylor <cgf@redhat.com>
* thread.cc (pthread_mutex::initMutex): Remove \n from api_fatal.
2002-09-30 Christopher Faylor <cgf@redhat.com>
* thread.cc (pthread::precreate): Use explicit "no inherit" option when
creating mutex.
(pthread_mutex::nativeMutex::init): Ditto.
(semaphore::semaphore): Ditto.
2002-09-30 Christopher Faylor <cgf@redhat.com>

View File

@ -1106,7 +1106,7 @@ void
pthread_mutex::initMutex ()
{
if (!mutexInitializationLock.init ())
api_fatal ("Could not create win32 Mutex for pthread mutex static initializer support.\n");
api_fatal ("Could not create win32 Mutex for pthread mutex static initializer support.");
}
pthread_mutex::pthread_mutex (pthread_mutexattr *attr):verifyable_object (PTHREAD_MUTEX_MAGIC)