xref: /haiku/src/system/libroot/os/scheduler.c (revision 1d9d47fc72028bb71b5f232a877231e59cfe2438)
1 /*
2 ** Copyright 2004, J�r�me Duval, korli@users.sourceforge.net. All rights reserved.
3 ** Distributed under the terms of the Haiku License.
4 */
5 
6 
7 #include <scheduler.h>
8 
9 int32
10 suggest_thread_priority(uint32 what, int32 period, bigtime_t jitter, bigtime_t length)
11 {
12 	return 0;
13 }
14 
15 bigtime_t
16 estimate_max_scheduling_latency(thread_id th)
17 {
18 	if (th == -1)
19 		th = find_thread(NULL);
20 
21 	return 0;
22 }
23 
24