diff options
author | rpj <rpj> | 1998-07-23 17:12:12 +0000 |
---|---|---|
committer | rpj <rpj> | 1998-07-23 17:12:12 +0000 |
commit | 63ed0e78ffb72a9f425928344355c2159830b5af (patch) | |
tree | 391078160e36b786d62c3505fd2c410607924f79 /private.c | |
parent | 5b4731d25e148347d190d8ceb5f3f7aa2a7dac86 (diff) |
Fri Jul 24 03:00:25 1998 Ross Johnson <rpj@ixobrychus.canberra.edu.au>
* attr.c (pthread_attr_destroy): Fix merge conflicts.
(pthread_attr_getdetachstate): Fix merge conflicts.
(pthread_attr_setdetachstate): Fix merge conflicts.
* pthread.h: Fix merge conflicts.
* sync.c (pthread_join): Fix merge conflicts.
Diffstat (limited to 'private.c')
-rw-r--r-- | private.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -92,12 +92,12 @@ _pthread_find_thread_entry(pthread_t thread) /* Wrap to top of table. */ this = _pthread_threads_table; } + } - if (this->thread == NULL || this == start) - { - /* Failed to find the thread. */ - return -1; - } + if (this->thread == NULL || this == start) + { + /* Failed to find the thread. */ + return -1; } return this; |