From 2ef097640758653a0e9d63e90a4aac329cd86368 Mon Sep 17 00:00:00 2001 From: rpj Date: Mon, 22 Feb 1999 02:54:12 +0000 Subject: 1999-02-23 Ross Johnson * Makefile: Some refinement. * *.c: More exhaustive checking through assertions; clean up; add some more tests. --- tests/self3.c | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 tests/self3.c (limited to 'tests/self3.c') diff --git a/tests/self3.c b/tests/self3.c deleted file mode 100644 index dc220b7..0000000 --- a/tests/self3.c +++ /dev/null @@ -1,32 +0,0 @@ -#include -#include -#include - -void * -entry(void * arg) -{ - /* Like systems such as HP-UX, we can't print the value of the thread ID - because it's not an integral type. Instead, we'll poke our noses into - the pthread_t structure and dump a useful internal value. This is - ordinarily bad, m'kay? */ - - pthread_t t = pthread_self(); - printf("thread no. %d has id %lx\n", (int) arg, t->threadH); - return 0; -} - -int -main() -{ - int rc; - pthread_t t[2]; - - rc = pthread_create(&t[0], NULL, entry, (void *) 1); - assert(rc == 0); - - rc = pthread_create(&t[1], NULL, entry, (void *) 2); - assert(rc == 0); - - Sleep(2000); - return 0; -} -- cgit v1.2.3