summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrpj <rpj>1998-07-24 07:52:30 +0000
committerrpj <rpj>1998-07-24 07:52:30 +0000
commit82fa43b768e09bf30669351b61eb2f94cb1c71a3 (patch)
tree99580bdb1b8a40ef7580537aea2b874e01b96849
parentd0870a69bfaea4e1c57b2fced2477b0546bb7006 (diff)
Fri Jul 24 16:33:17 1998 Ross Johnson <rpj@swan.canberra.edu.au>
* sync.c (pthread_detach): Use equality test, not assignment. * create.c (_pthread_start_call): Add call to Win32 CloseHandle() if thread is detached.
-rw-r--r--ChangeLog7
-rw-r--r--create.c5
-rw-r--r--sync.c2
3 files changed, 13 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4ad0356..eb072c6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Fri Jul 24 16:33:17 1998 Ross Johnson <rpj@swan.canberra.edu.au>
+
+ * sync.c (pthread_detach): Use equality test, not assignment.
+
+ * create.c (_pthread_start_call): Add call to Win32 CloseHandle()
+ if thread is detached.
+
1998-07-24 Ben Elliston <bje@cygnus.com>
* sync.c (pthread_detach): Close the Win32 thread handle to
diff --git a/create.c b/create.c
index e15a98f..45b1570 100644
--- a/create.c
+++ b/create.c
@@ -24,6 +24,11 @@ _pthread_start_call(void * thisarg)
unsigned ret;
int from;
+ if (this->detached == PTHREAD_CREATE_DETACHED)
+ {
+ (void) CloseHandle(this->thread);
+ }
+
func = this->call.routine;
arg = this->call.arg;
diff --git a/sync.c b/sync.c
index 2fc08ec..c4e4327 100644
--- a/sync.c
+++ b/sync.c
@@ -73,7 +73,7 @@ pthread_detach(pthread_t thread)
this = _pthread_find_thread_entry(thread);
- if (this = -1)
+ if (this == -1)
{
return ESRCH;
}