aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/thread.h
diff options
context:
space:
mode:
authorRobert Collins <rbtcollins@hotmail.com>2002-09-27 15:08:50 +0000
committerRobert Collins <rbtcollins@hotmail.com>2002-09-27 15:08:50 +0000
commitda6a08decb95746b85f4562c2d3ac921eed9d91b (patch)
tree744515c9050c47ab9335635f2ec856dd2014f405 /winsup/cygwin/thread.h
parent39bd4d5016ebad6803e2865b5494ffd5a495b4f1 (diff)
downloadnewlib-da6a08decb95746b85f4562c2d3ac921eed9d91b.zip
newlib-da6a08decb95746b85f4562c2d3ac921eed9d91b.tar.gz
newlib-da6a08decb95746b85f4562c2d3ac921eed9d91b.tar.bz2
2002-09-27 Robert Collins <rbtcollins@hotmail.com>
* thread.cc (pthread_key::run_destructor): Run_destructor is not const as it needs to set the key value. * thread.h (pthread_key::run_destructor): Ditto. 2002-09-27 Robert Collins <rbtcollins@hotmail.com> * thread.cc (pthread_key::run_destructor): Follow opengroup algorithm. I.e. only run the destructor NON-NULL key values, and reset the key to NULL before running the destructor. Reported by Thomas Pfaff.
Diffstat (limited to 'winsup/cygwin/thread.h')
-rw-r--r--winsup/cygwin/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/thread.h b/winsup/cygwin/thread.h
index c364660..4be0bf1 100644
--- a/winsup/cygwin/thread.h
+++ b/winsup/cygwin/thread.h
@@ -212,7 +212,7 @@ private:
void saveKeyToBuffer ();
void recreateKeyFromBuffer ();
void (*destructor) (void *);
- void run_destructor () const;
+ void run_destructor ();
void *fork_buf;
};