summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/sched.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-06-04 19:05:16 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-06-04 19:05:16 +0000
commit24adc5bc3d36d0a8f2075e56e996a1f522ae4a7c (patch)
tree96f0493a324a0c24e61a1f7db752bcb2cc9c5a3c /c/src/exec/posix/src/sched.c
parentadded interpretation of scheduling policy and parameter information to (diff)
downloadrtems-24adc5bc3d36d0a8f2075e56e996a1f522ae4a7c.tar.bz2
changed sched_rr_get_interval to use the interval to timespec routine.
Diffstat (limited to 'c/src/exec/posix/src/sched.c')
-rw-r--r--c/src/exec/posix/src/sched.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/c/src/exec/posix/src/sched.c b/c/src/exec/posix/src/sched.c
index 2cee1fc07d..92838b1a9b 100644
--- a/c/src/exec/posix/src/sched.c
+++ b/c/src/exec/posix/src/sched.c
@@ -4,11 +4,13 @@
#include <assert.h>
#include <sched.h>
+#include <errno.h>
#include <rtems/system.h>
#include <rtems/score/tod.h>
#include <rtems/score/thread.h>
#include <rtems/posix/priority.h>
+#include <rtems/posix/time.h>
/*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;
}