diff options
author | Christopher Faylor <me@cgf.cx> | 2002-06-11 16:06:16 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-06-11 16:06:16 +0000 |
commit | 077d8b23c867d95ca8742fdb9102a4450ea6e397 (patch) | |
tree | 07b318e9401c1dc3487620c57699819379d0e55d /winsup/cygwin/thread.h | |
parent | 2fbf4a7f3604268f163f040318f1b7a0b1bbb5e0 (diff) | |
download | cygnal-077d8b23c867d95ca8742fdb9102a4450ea6e397.tar.gz cygnal-077d8b23c867d95ca8742fdb9102a4450ea6e397.tar.bz2 cygnal-077d8b23c867d95ca8742fdb9102a4450ea6e397.zip |
* spawn.cc (spawn_guts): More hToken removal cleanup.
Diffstat (limited to 'winsup/cygwin/thread.h')
-rw-r--r-- | winsup/cygwin/thread.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/winsup/cygwin/thread.h b/winsup/cygwin/thread.h index 6c28abcbb..0d31e02fd 100644 --- a/winsup/cygwin/thread.h +++ b/winsup/cygwin/thread.h @@ -302,7 +302,7 @@ private: friend void __pthread_exit (void *value_ptr); friend int __pthread_join (pthread_t * thread, void **return_val); friend int __pthread_detach (pthread_t * thread); - + void pop_all_cleanup_handlers (void); }; @@ -395,12 +395,12 @@ public: void Init (int); void fixup_after_fork (void); - MTinterface ():reent_index (0), indexallocated (0), threadcount (1) - { - pthread_prepare = NULL; - pthread_child = NULL; - pthread_parent = NULL; - } + MTinterface ():reent_index (0), indexallocated (0), threadcount (1) + { + pthread_prepare = NULL; + pthread_child = NULL; + pthread_parent = NULL; + } }; void __pthread_atforkprepare(void); |