1 /* 2 * Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _SYSTEM_SYSCALL_PROCESS_INFO_H 6 #define _SYSTEM_SYSCALL_PROCESS_INFO_H 7 8 9 enum which_process_info { 10 SESSION_ID = 1, 11 GROUP_ID, 12 PARENT_ID, 13 }; 14 15 16 #endif /* _SYSTEM_SYSCALL_PROCESS_INFO_H */ 17