Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Collins <rbtcollins@hotmail.com>2002-09-21 02:34:05 +0400
committerRobert Collins <rbtcollins@hotmail.com>2002-09-21 02:34:05 +0400
commit4e2822f160ec6f61d7bae8cabb4b5daad73e3f99 (patch)
tree9bdb2b552539dba326156ad748b72b4b0108c9df /winsup/cygwin/ChangeLog
parent1e0e64c9d84785830a384dbf2d6c70a1bea9d3c8 (diff)
2002-09-21 Robert Collins <rbtcollins@hotmail.com>
* thread.cc: Change verifyable_object_isvalid calls with PTHREAD_MUTEX_MAGIC and PTHREAD_KEY_MAGIC and PTHREAD_ATTR_MAGIC to ::isGoodObject() calls throughout. (MTinterface::Init): Remove dead code. (pthread_attr::isGoodObject): Implement. (pthread_key::isGoodObject): Implement. (pthread_mutex::isGoodObject): Implement. (pthread_mutex::isGoodInitializerOrObject): Implement. (pthread::isGoodObject): Update signature. * thread.h (pthread_key::isGoodObject): Declare. (pthread_attr::isGoodObject): Ditto. (pthread_mutex::isGoodObject): Ditto. (pthread_mutex::isGoodInitializerOrObject): Ditto. (pthread::isGoodObject): Change to a const parameter for const correctness. (pthread_mutexattr::isGoodObject): Declare. (pthread_condattr::isGoodObject): Ditto. (pthread_cond::isGoodObject): Ditto. (semaphore::isGoodObject): Ditto.
Diffstat (limited to 'winsup/cygwin/ChangeLog')
-rw-r--r--winsup/cygwin/ChangeLog22
1 files changed, 22 insertions, 0 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 9915b3cb2..ea59f616b 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,25 @@
+2002-09-21 Robert Collins <rbtcollins@hotmail.com>
+
+ * thread.cc: Change verifyable_object_isvalid calls with
+ PTHREAD_MUTEX_MAGIC and PTHREAD_KEY_MAGIC and PTHREAD_ATTR_MAGIC to
+ ::isGoodObject() calls throughout.
+ (MTinterface::Init): Remove dead code.
+ (pthread_attr::isGoodObject): Implement.
+ (pthread_key::isGoodObject): Implement.
+ (pthread_mutex::isGoodObject): Implement.
+ (pthread_mutex::isGoodInitializerOrObject): Implement.
+ (pthread::isGoodObject): Update signature.
+ * thread.h (pthread_key::isGoodObject): Declare.
+ (pthread_attr::isGoodObject): Ditto.
+ (pthread_mutex::isGoodObject): Ditto.
+ (pthread_mutex::isGoodInitializerOrObject): Ditto.
+ (pthread::isGoodObject): Change to a const parameter for const
+ correctness.
+ (pthread_mutexattr::isGoodObject): Declare.
+ (pthread_condattr::isGoodObject): Ditto.
+ (pthread_cond::isGoodObject): Ditto.
+ (semaphore::isGoodObject): Ditto.
+
2002-09-19 Christopher Faylor <cgf@redhat.com>
Cleanup calls to CreateFile throughout.