diff options
author | Christopher Faylor <me@cgf.cx> | 2002-09-30 15:11:55 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-09-30 15:11:55 +0000 |
commit | 66dca8bb0d03d1ede951e780f4c07c3115ab0875 (patch) | |
tree | 557c53063e534445cf69ebd4e387f0c4e26e40d8 | |
parent | bd2b5664a14f6805e57ec4f375912d8bb73be886 (diff) | |
download | cygnal-66dca8bb0d03d1ede951e780f4c07c3115ab0875.tar.gz cygnal-66dca8bb0d03d1ede951e780f4c07c3115ab0875.tar.bz2 cygnal-66dca8bb0d03d1ede951e780f4c07c3115ab0875.zip |
* thread.cc (pthread_mutex::initMutex): Remove \n from api_fatal.
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/thread.cc | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 34185e22c..f4598a7e5 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -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> diff --git a/winsup/cygwin/thread.cc b/winsup/cygwin/thread.cc index 6d8c4f5e6..8c1213a76 100644 --- a/winsup/cygwin/thread.cc +++ b/winsup/cygwin/thread.cc @@ -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) |