xref: /linux/include/linux/pid_types.h (revision 6d5e9d63)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_PID_TYPES_H
3 #define _LINUX_PID_TYPES_H
4 
5 enum pid_type {
6 	PIDTYPE_PID,
7 	PIDTYPE_TGID,
8 	PIDTYPE_PGID,
9 	PIDTYPE_SID,
10 	PIDTYPE_MAX,
11 };
12 
13 struct pid_namespace;
14 extern struct pid_namespace init_pid_ns;
15 
16 #endif /* _LINUX_PID_TYPES_H */
17