From 1acd28b4aec86a907846e1715bc95208d6e277e6 Mon Sep 17 00:00:00 2001 From: rpj Date: Sun, 21 Feb 1999 06:38:06 +0000 Subject: Sun Feb 21 1999 Ross Johnson * pthread.h (PTHREAD_MUTEX_INITIALIZER): missing braces around cs element initialiser. Bring some tests up-to-date. --- tests/self3.c | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) (limited to 'tests/self3.c') 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 -/* Hack. Peer into implementation details. */ -#include #include #include @@ -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; -- cgit v1.2.3