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/ChangeLog | 6 ++++++ tests/self2.c | 4 +--- tests/self3.c | 16 +++++----------- 3 files changed, 12 insertions(+), 14 deletions(-) (limited to 'tests') diff --git a/tests/ChangeLog b/tests/ChangeLog index cb1abab..962f922 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,9 @@ +1999-02-22 Ross Johnson + + * self2.c: Bring up to date. + + * self3.c: Ditto. + 1999-02-21 Ben Elliston * README: Update. diff --git a/tests/self2.c b/tests/self2.c index 51cc129..461e5f9 100644 --- a/tests/self2.c +++ b/tests/self2.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("my thread is %lx\n", t->win32handle); + printf("my thread is %lx\n", t->threadH); return arg; } 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