mirror of
https://review.haiku-os.org/haiku
synced 2025-01-31 10:47:14 +01:00
16 lines
313 B
C
16 lines
313 B
C
|
/*
|
||
|
* Copyright 2024, Jérôme Duval, jerome.duval@gmail.com. All rights reserved.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _SYSTEM_SYSCALL_CLOCK_INFO_H
|
||
|
#define _SYSTEM_SYSCALL_CLOCK_INFO_H
|
||
|
|
||
|
|
||
|
enum which_process_info {
|
||
|
TEAM_ID = 1,
|
||
|
THREAD_ID,
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif /* _SYSTEM_SYSCALL_CLOCK_INFO_H */
|