aboutsummaryrefslogtreecommitdiff
path: root/linuxthreads/Examples/ex15.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2005-07-03 04:40:34 +0000
committerRoland McGrath <roland@gnu.org>2005-07-03 04:40:34 +0000
commit88e3fbcb5d6829f8980d6bb356b1c0cd7a38187b (patch)
tree41b73f55c91439f87d82e5d32b9d8e46e82ce3c1 /linuxthreads/Examples/ex15.c
parentd19b1b4f2ff49e085b55e8564b52ca17b028e335 (diff)
downloadglibc-88e3fbcb5d6829f8980d6bb356b1c0cd7a38187b.tar
glibc-88e3fbcb5d6829f8980d6bb356b1c0cd7a38187b.tar.gz
glibc-88e3fbcb5d6829f8980d6bb356b1c0cd7a38187b.tar.bz2
glibc-88e3fbcb5d6829f8980d6bb356b1c0cd7a38187b.zip
linuxthreads, linuxthreads_db: Directories removed (preserved in ports repository).
Diffstat (limited to 'linuxthreads/Examples/ex15.c')
-rw-r--r--linuxthreads/Examples/ex15.c58
1 files changed, 0 insertions, 58 deletions
diff --git a/linuxthreads/Examples/ex15.c b/linuxthreads/Examples/ex15.c
deleted file mode 100644
index e953b231d7..0000000000
--- a/linuxthreads/Examples/ex15.c
+++ /dev/null
@@ -1,58 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-#include <sys/types.h>
-#include <sys/wait.h>
-#include <pthread.h>
-#include <unistd.h>
-
-static void *worker (void *dummy) __attribute__ ((__noreturn__));
-
-static void *
-worker (void *dummy)
-{
- exit (26);
-}
-
-#define TEST_FUNCTION do_test ()
-#define TIMEOUT 10
-static int
-do_test (void)
-{
- pthread_t th;
- pid_t pid;
- int status;
-
- switch ((pid = fork ()))
- {
- case -1:
- puts ("Could not fork");
- exit (1);
- case 0:
- if (pthread_create(&th, NULL, worker, NULL) != 0)
- {
- puts ("Failed to start thread");
- exit (1);
- }
- for (;;);
- exit (1);
- default:
- break;
- }
-
- if (waitpid (pid, &status, 0) != pid)
- {
- puts ("waitpid failed");
- exit (1);
- }
-
- if (!WIFEXITED (status) || WEXITSTATUS (status) != 26)
- {
- printf ("Wrong exit code %d\n", status);
- exit (1);
- }
-
- puts ("All OK");
- return 0;
-}
-
-#include "../../test-skeleton.c"