f46308c92a
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36206 a95241bf-73f2-0310-859d-f6bbb57e9c96
17 lines
332 B
C
17 lines
332 B
C
/*
|
|
* Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _SYSTEM_SYSCALL_PROCESS_INFO_H
|
|
#define _SYSTEM_SYSCALL_PROCESS_INFO_H
|
|
|
|
|
|
enum which_process_info {
|
|
SESSION_ID = 1,
|
|
GROUP_ID,
|
|
PARENT_ID,
|
|
};
|
|
|
|
|
|
#endif /* _SYSTEM_SYSCALL_PROCESS_INFO_H */
|