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