i386: Disable Intel Xeon Phi tests for GCC 15 and above (BZ 31782)
[glibc.git] / sysdeps / unix / sysv / linux / tst-spawn-pidfd.h
blob25e402af4d25655ee5c165e39ffdc160e2bd7acf
1 /* Tests for spawn pidfd extension.
2 Copyright (C) 2023-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/>. */
19 #include <errno.h>
20 #include <spawn.h>
21 #include <support/check.h>
23 #define PID_T_TYPE int
25 /* Call posix_spawn with POSIX_SPAWN_PIDFD set. */
26 static inline int
27 pidfd_spawn_check (int *pidfd, const char *path,
28 const posix_spawn_file_actions_t *fa,
29 const posix_spawnattr_t *attr, char *const argv[],
30 char *const envp[])
32 int r = pidfd_spawn (pidfd, path, fa, attr, argv, envp);
33 if (r == ENOSYS)
34 FAIL_UNSUPPORTED ("kernel does not support CLONE_PIDFD clone flag");
35 return r;
38 #define POSIX_SPAWN(__pidfd, __path, __actions, __attr, __argv, __envp) \
39 pidfd_spawn_check (__pidfd, __path, __actions, __attr, __argv, __envp)
41 static inline int
42 pidfd_spawnp_check (int *pidfd, const char *file,
43 const posix_spawn_file_actions_t *fa,
44 const posix_spawnattr_t *attr,
45 char *const argv[], char *const envp[])
47 int r = pidfd_spawnp (pidfd, file, fa, attr, argv, envp);
48 if (r == ENOSYS)
49 FAIL_UNSUPPORTED ("kernel does not support CLONE_PIDFD clone flag");
50 return r;
53 #define POSIX_SPAWNP(__child, __path, __actions, __attr, __argv, __envp) \
54 pidfd_spawnp_check (__child, __path, __actions, __attr, __argv, __envp)
56 #define WAITID(__idtype, __id, __info, __opts) \
57 ({ \
58 __typeof (__idtype) __new_idtype = __idtype == P_PID \
59 ? P_PIDFD : __idtype; \
60 waitid (__new_idtype, __id, __info, __opts); \
63 #define TST_SPAWN_PIDFD 1