summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrpj <rpj>2001-06-05 15:13:47 +0000
committerrpj <rpj>2001-06-05 15:13:47 +0000
commit544c9bdc635a5ce92418ee58e71cf54ba50a60a1 (patch)
tree35d6acc9049a298157b1eb4cb4cf0e6cb75c4682
parent53e776ae8b7dc6b1d01a97834683c67429d9339c (diff)
* mutex.c (pthread_mutexattr_init): Removesnap-2001-06-06
ptw32_mutex_default_kind.
-rw-r--r--ANNOUNCE6
-rw-r--r--ChangeLog5
-rw-r--r--mutex.c2
3 files changed, 9 insertions, 4 deletions
diff --git a/ANNOUNCE b/ANNOUNCE
index 2502f17..82678a1 100644
--- a/ANNOUNCE
+++ b/ANNOUNCE
@@ -1,4 +1,4 @@
- PTHREADS-WIN32 SNAPSHOT 2001-06-04
+ PTHREADS-WIN32 SNAPSHOT 2001-06-06
----------------------------------
Web Site: http://sources.redhat.com/pthreads-win32/
FTP Site: ftp://sources.redhat.com/pub/pthreads-win32
@@ -6,14 +6,14 @@
We are pleased to announce the availability of a new snapshot of
-Pthreads-win32, an Open Source Software (OSS) implementation of the
+Pthreads-win32, an Open Source Software implementation of the
Threads component of the POSIX 1003.1c 1995 Standard for Microsoft's
Win32 environment. Some functions from POSIX 1003.1b are also
supported including semaphores. Other related functions include
the set of read-write lock functions.
Parts of the implementation also comply with the Open Group's
-Unix 98 specification for compatibility with major Unix
+Single Unix specification for compatibility with major Unix
implementations and Linux.
Pthreads-win32 is free software, distributed under the GNU Library
diff --git a/ChangeLog b/ChangeLog
index 4b4d0d0..e47caee 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-06-06 Ross Johnson <rpj@setup1.ise.canberra.edu.au>
+
+ * mutex.c (pthread_mutexattr_init): Remove
+ ptw32_mutex_default_kind.
+
2001-06-05 Ross Johnson <rpj@setup1.ise.canberra.edu.au>
* nonportable.c (pthread_mutex_setdefaultkind_np):
diff --git a/mutex.c b/mutex.c
index 5e01536..b1e2693 100644
--- a/mutex.c
+++ b/mutex.c
@@ -282,7 +282,7 @@ pthread_mutexattr_init (pthread_mutexattr_t * attr)
}
ma->pshared = PTHREAD_PROCESS_PRIVATE;
- ma->kind = ptw32_mutex_default_kind;
+ ma->kind = PTHREAD_MUTEX_DEFAULT;
*attr = ma;