support_become_root: Enable file creation in user namespaces
[glibc.git] / nptl / tst-cancel26.c
blob07dafff0cefa1b2c2559259bb1a0b81db4246d52
1 /* Check for failure paths handling for cancellation points.
2 Copyright (C) 2015-2017 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 <http://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <pthread.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <unistd.h>
26 /* Check that the cancel syscall points handles both the errno and return code
27 correctly for invalid arguments. */
28 static void *
29 tf (void *arg)
31 #ifdef SET_CANCEL_DISABLE
32 pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, NULL);
33 #endif
35 /* This is a cancellation point, but we should not be cancelled. */
36 int r = write (-1, 0, 0);
38 if (r != -1 || errno != EBADF)
40 printf ("error: write returned %d, errno %d\n", r, errno);
41 exit (1);
44 return NULL;
47 static int
48 do_test (void)
50 pthread_t th;
52 if (pthread_create (&th, NULL, tf, NULL) != 0)
54 puts ("error: pthread_create failed");
55 exit (1);
58 if (pthread_join (th, NULL) != 0)
60 puts ("error: pthread_join failed");
61 exit (1);
64 return 0;
67 #define TEST_FUNCTION do_test ()
68 #include "../test-skeleton.c"