From 756a64304b61a94b9b57ae88c4af5654152f5b8e Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Sun, 20 May 2012 13:37:08 +0000 Subject: Remove libpthread, now in eglibc --- libpthread/tests/test-1.c | 50 ----------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 libpthread/tests/test-1.c (limited to 'libpthread/tests/test-1.c') diff --git a/libpthread/tests/test-1.c b/libpthread/tests/test-1.c deleted file mode 100644 index 6ec1afb3..00000000 --- a/libpthread/tests/test-1.c +++ /dev/null @@ -1,50 +0,0 @@ -#define _GNU_SOURCE - -#include -#include -#include -#include -#include -#include - -#define THREADS 500 - -void * -foo (void *arg) -{ - pthread_mutex_t *mutex = arg; - pthread_mutex_lock (mutex); - pthread_mutex_unlock (mutex); - return mutex; -} - -int -main (int argc, char **argv) -{ - int i; - error_t err; - pthread_t tid[THREADS]; - pthread_mutex_t mutex[THREADS]; - - for (i = 0; i < THREADS; i ++) - { - pthread_mutex_init (&mutex[i], 0); - pthread_mutex_lock (&mutex[i]); - err = pthread_create (&tid[i], 0, foo, &mutex[i]); - if (err) - error (1, err, "pthread_create"); - sched_yield (); - } - - for (i = THREADS - 1; i >= 0; i --) - { - void *ret; - pthread_mutex_unlock (&mutex[i]); - err = pthread_join (tid[i], &ret); - if (err) - error (1, err, "pthread_join"); - assert (ret == &mutex[i]); - } - - return 0; -} -- cgit v1.2.3