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