1 /* Test sem_timedwait cancellation for uncontended case.
2 Copyright (C) 2003-2024 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
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, see
17 <https://www.gnu.org/licenses/>. */
21 #include <semaphore.h>
29 static pthread_barrier_t bar
;
40 puts ("second call to cleanup");
49 pthread_cleanup_push (cleanup
, NULL
);
51 int e
= pthread_barrier_wait (&bar
);
52 if (e
!= 0 && e
!= PTHREAD_BARRIER_SERIAL_THREAD
)
54 puts ("error: tf: 1st barrier_wait failed");
59 (void) gettimeofday (&tv
, NULL
);
62 TIMEVAL_TO_TIMESPEC (&tv
, &ts
);
64 /* Timeout in 5 seconds. */
67 /* This call should block and be cancelable. */
68 sem_timedwait (&sem
, &ts
);
70 pthread_cleanup_pop (0);
81 if (pthread_barrier_init (&bar
, NULL
, 2) != 0)
83 puts ("error: barrier_init failed");
87 if (sem_init (&sem
, 0, 1) != 0)
89 puts ("error: sem_init failed");
93 if (pthread_create (&th
, NULL
, tf
, NULL
) != 0)
95 puts ("error: create failed");
99 /* Check whether cancellation is honored even before sem_timedwait does
101 if (pthread_cancel (th
) != 0)
103 puts ("error: 1st cancel failed");
107 int e
= pthread_barrier_wait (&bar
);
108 if (e
!= 0 && e
!= PTHREAD_BARRIER_SERIAL_THREAD
)
110 puts ("1st barrier_wait failed");
115 if (pthread_join (th
, &r
) != 0)
117 puts ("join failed");
121 if (r
!= PTHREAD_CANCELED
)
123 puts ("thread not canceled");
131 #define TEST_FUNCTION do_test ()
132 #include "../test-skeleton.c"