From 24adc5bc3d36d0a8f2075e56e996a1f522ae4a7c Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 4 Jun 1996 19:05:16 +0000 Subject: changed sched_rr_get_interval to use the interval to timespec routine. --- cpukit/posix/src/sched.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'cpukit/posix/src/sched.c') diff --git a/cpukit/posix/src/sched.c b/cpukit/posix/src/sched.c index 2cee1fc07d..92838b1a9b 100644 --- a/cpukit/posix/src/sched.c +++ b/cpukit/posix/src/sched.c @@ -4,11 +4,13 @@ #include #include +#include #include #include #include #include +#include /*PAGE * @@ -134,8 +136,6 @@ int sched_rr_get_interval( struct timespec *interval ) { - time_t us_per_quantum; - /* XXX do we need to support different time quantums per thread */ /* @@ -144,7 +144,6 @@ int sched_rr_get_interval( assert( pid == getpid() ); - _POSIX_Interval_to_timespec( _Thread_Ticks_per_timeslice, interval ); return 0; } -- cgit v1.2.3