aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-09-30 15:11:55 +0000
committerChristopher Faylor <me@cgf.cx>2002-09-30 15:11:55 +0000
commit66dca8bb0d03d1ede951e780f4c07c3115ab0875 (patch)
tree557c53063e534445cf69ebd4e387f0c4e26e40d8 /winsup/cygwin
parentbd2b5664a14f6805e57ec4f375912d8bb73be886 (diff)
downloadnewlib-66dca8bb0d03d1ede951e780f4c07c3115ab0875.zip
newlib-66dca8bb0d03d1ede951e780f4c07c3115ab0875.tar.gz
newlib-66dca8bb0d03d1ede951e780f4c07c3115ab0875.tar.bz2
* thread.cc (pthread_mutex::initMutex): Remove \n from api_fatal.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/thread.cc2
2 files changed, 5 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 34185e2..f4598a7 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 6d8c4f5..8c1213a 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)