1 /* Copyright (C) 2003 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Jakub Jelinek <jakub@redhat.com>, 2003.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library 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 GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
38 static volatile bool done
;
44 puts ("child created");
46 if (pthread_setcancelstate (PTHREAD_CANCEL_ENABLE
, NULL
) != 0
47 || pthread_setcanceltype (PTHREAD_CANCEL_DEFERRED
, NULL
) != 0)
49 puts ("cannot set cancellation options");
55 if (pthread_mutex_lock (&t
->lock
) != 0)
57 puts ("child: lock failed");
63 if (pthread_cond_signal (&t
->cond
) != 0)
65 puts ("child: cond_signal failed");
69 if (pthread_cond_wait (&t
->cond
, &t
->lock
) != 0)
71 puts ("child: cond_wait failed");
75 if (pthread_mutex_unlock (&t
->lock
) != 0)
77 puts ("child: unlock failed");
91 for (i
= 0; i
< N
; ++i
)
93 printf ("round %d\n", i
);
95 t
[i
] = (T
*) malloc (sizeof (T
));
98 puts ("out of memory");
102 if (pthread_mutex_init (&t
[i
]->lock
, NULL
) != 0
103 || pthread_cond_init (&t
[i
]->cond
, NULL
) != 0)
105 puts ("an _init function failed");
109 if (pthread_mutex_lock (&t
[i
]->lock
) != 0)
111 puts ("initial mutex_lock failed");
117 if (pthread_create (&t
[i
]->h
, NULL
, tf
, t
[i
]) != 0)
119 puts ("pthread_create failed");
124 if (pthread_cond_wait (&t
[i
]->cond
, &t
[i
]->lock
) != 0)
126 puts ("cond_wait failed");
131 /* Release the lock since the cancel handler will get it. */
132 if (pthread_mutex_unlock (&t
[i
]->lock
) != 0)
134 puts ("mutex_unlock failed");
138 if (pthread_cancel (t
[i
]->h
) != 0)
140 puts ("cancel failed");
144 puts ("parent: joining now");
147 if (pthread_join (t
[i
]->h
, &result
) != 0)
149 puts ("join failed");
153 if (result
!= PTHREAD_CANCELED
)
155 puts ("result != PTHREAD_CANCELED");
160 for (i
= 0; i
< N
; ++i
)
167 #define TEST_FUNCTION do_test ()
168 #include "../test-skeleton.c"