summaryrefslogtreecommitdiff
path: root/libpthread/tests/test-12.c
diff options
context:
space:
mode:
authorSamuel Thibault <samy@hurd.youpi.perso.aquilenet.fr>2012-05-20 13:37:08 +0000
committerSamuel Thibault <samy@hurd.youpi.perso.aquilenet.fr>2012-05-20 13:37:08 +0000
commit756a64304b61a94b9b57ae88c4af5654152f5b8e (patch)
treec65bf4981fbf56c3d63d58dcd7ad4893d47890db /libpthread/tests/test-12.c
parentd0109384c8d7ae06f50dcf0804aa7d30356dbde0 (diff)
Remove libpthread, now in eglibc
Diffstat (limited to 'libpthread/tests/test-12.c')
-rw-r--r--libpthread/tests/test-12.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/libpthread/tests/test-12.c b/libpthread/tests/test-12.c
deleted file mode 100644
index 2b784908..00000000
--- a/libpthread/tests/test-12.c
+++ /dev/null
@@ -1,29 +0,0 @@
-/* Test concurrency level. */
-
-#define _GNU_SOURCE
-
-#include <pthread.h>
-#include <assert.h>
-#include <error.h>
-#include <errno.h>
-
-int
-main (int argc, char **argv)
-{
- int i;
- int err;
-
- i = pthread_getconcurrency ();
- assert (i == 0);
-
- err = pthread_setconcurrency (-1);
- assert (err == EINVAL);
-
- err = pthread_setconcurrency (4);
- assert (err == 0);
-
- i = pthread_getconcurrency ();
- assert (i == 4);
-
- return 0;
-}