diff options
author | rpj <rpj> | 1999-02-21 06:38:06 +0000 |
---|---|---|
committer | rpj <rpj> | 1999-02-21 06:38:06 +0000 |
commit | 1acd28b4aec86a907846e1715bc95208d6e277e6 (patch) | |
tree | 45ee712e6b50cd61d810782ec4b30eb08fd0369e /tests/self3.c | |
parent | 46cb13531327c59ce4e3189e1a5b1763ed248095 (diff) |
Sun Feb 21 1999 Ross Johnson <rpj@ixobrychus.canberra.edu.au>
* pthread.h (PTHREAD_MUTEX_INITIALIZER): missing braces around
cs element initialiser.
Bring some tests up-to-date.
Diffstat (limited to 'tests/self3.c')
-rw-r--r-- | tests/self3.c | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/tests/self3.c b/tests/self3.c index 5cc8296..dc220b7 100644 --- a/tests/self3.c +++ b/tests/self3.c @@ -1,6 +1,4 @@ #include <pthread.h> -/* Hack. Peer into implementation details. */ -#include <implement.h> #include <assert.h> #include <stdio.h> @@ -13,7 +11,7 @@ entry(void * arg) ordinarily bad, m'kay? */ pthread_t t = pthread_self(); - printf("thread no. %d has id %lx\n", (int) arg, t->win32handle); + printf("thread no. %d has id %lx\n", (int) arg, t->threadH); return 0; } @@ -23,15 +21,11 @@ main() int rc; pthread_t t[2]; - if (pthread_create(&t[0], NULL, entry, (void *) 1) != 0) - { - return 1; - } + rc = pthread_create(&t[0], NULL, entry, (void *) 1); + assert(rc == 0); - if (pthread_create(&t[1], NULL, entry, (void *) 2) != 0) - { - return 1; - } + rc = pthread_create(&t[1], NULL, entry, (void *) 2); + assert(rc == 0); Sleep(2000); return 0; |