xref: /haiku/headers/private/system/extended_system_info_defs.h (revision 56d734a1aa601a8a5cfc5dbc79433f96f4e1731e)
1 /*
2  * Copyright 2010, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _SYSTEM_EXTENDED_SYSTEM_INFO_DEFS_H
6 #define _SYSTEM_EXTENDED_SYSTEM_INFO_DEFS_H
7 
8 
9 enum {
10 	B_TEAM_INFO_BASIC				= 0x01,	// basic general info
11 	B_TEAM_INFO_THREADS				= 0x02,	// list of threads
12 	B_TEAM_INFO_IMAGES				= 0x04,	// list of images
13 	B_TEAM_INFO_AREAS				= 0x08,	// list of areas
14 	B_TEAM_INFO_SEMAPHORES			= 0x10,	// list of semaphores
15 	B_TEAM_INFO_PORTS				= 0x20,	// list of ports
16 	B_TEAM_INFO_FILE_DESCRIPTORS	= 0x40	// list of file descriptors
17 };
18 
19 
20 #endif	/* _SYSTEM_EXTENDED_SYSTEM_INFO_DEFS_H */
21