| OLD | NEW |
| (Empty) |
| 1 /* This testcase is part of GDB, the GNU debugger. | |
| 2 | |
| 3 Copyright 2008-2012 Free Software Foundation, Inc. | |
| 4 | |
| 5 This program is free software; you can redistribute it and/or modify | |
| 6 it under the terms of the GNU General Public License as published by | |
| 7 the Free Software Foundation; either version 3 of the License, or | |
| 8 (at your option) any later version. | |
| 9 | |
| 10 This program is distributed in the hope that it will be useful, | |
| 11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 13 GNU General Public License for more details. | |
| 14 | |
| 15 You should have received a copy of the GNU General Public License | |
| 16 along with this program. If not, see <http://www.gnu.org/licenses/>. */ | |
| 17 | |
| 18 /* This program is intended to be started outside of gdb, then | |
| 19 manually stopped via a signal. */ | |
| 20 | |
| 21 #include <unistd.h> | |
| 22 #include <pthread.h> | |
| 23 #include <stdio.h> | |
| 24 #include <string.h> | |
| 25 | |
| 26 /* Red Hat BZ PR 197584.c */ | |
| 27 | |
| 28 void *func (void *arg) | |
| 29 { | |
| 30 sleep (10000); /* Ridiculous time, but we will eventually kill it. */ | |
| 31 sleep (10000); /* RHEL3U8 kernel-2.4.21-47.EL will cut the sleep time.
*/ | |
| 32 | |
| 33 return NULL; /* thread-sleep */ | |
| 34 } | |
| 35 | |
| 36 int main () | |
| 37 { | |
| 38 pthread_t t1,t2; | |
| 39 int ret; | |
| 40 | |
| 41 ret = pthread_create (&t1, NULL, func, NULL); | |
| 42 if (ret) | |
| 43 fprintf(stderr, "pthread_create(): %s", strerror (ret)); | |
| 44 ret = pthread_create (&t2, NULL, func, NULL); | |
| 45 if (ret) | |
| 46 fprintf(stderr, "pthread_create(): %s", strerror (ret)); | |
| 47 | |
| 48 ret = pthread_join (t1, NULL); | |
| 49 if (ret) /* first-join */ | |
| 50 fprintf(stderr, "pthread_join(): %s", strerror (ret)); | |
| 51 ret = pthread_join (t2, NULL); | |
| 52 if (ret) | |
| 53 fprintf(stderr, "pthread_join(): %s", strerror (ret)); | |
| 54 | |
| 55 return 0; | |
| 56 } | |
| OLD | NEW |