mirror of
https://review.haiku-os.org/haiku
synced 2025-01-31 10:47:14 +01:00
04c90835ac
fix #15615 Change-Id: I6b34f97464fac97d0b339fa338cfc5df34536080 Reviewed-on: https://review.haiku-os.org/c/haiku/+/8681 Reviewed-by: Jérôme Duval <jerome.duval@gmail.com> Reviewed-by: waddlesplash <waddlesplash@gmail.com> Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
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 */
|