Update copyright dates with scripts/update-copyrights
[glibc.git] / sysdeps / pthread / tst-pthread_cancel-exited.c
blob055ab0b1cffbd4e3235493b1464cb4a9bf8c24b8
1 /* Test that pthread_kill succeeds for an exited thread.
2 Copyright (C) 2021-2023 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/>. */
19 /* This test verifies that pthread_kill returns 0 (and not ESRCH) for
20 a thread that has exited on the kernel side. */
22 #include <stddef.h>
23 #include <support/support.h>
24 #include <support/xthread.h>
26 static void *
27 noop_thread (void *closure)
29 return NULL;
32 static int
33 do_test (void)
35 pthread_t thr = xpthread_create (NULL, noop_thread, NULL);
37 support_wait_for_thread_exit ();
39 xpthread_cancel (thr);
40 xpthread_join (thr);
42 return 0;
45 #include <support/test-driver.c>