changed sched_rr_get_interval to use the interval to timespec routine.

This commit is contained in:
Joel Sherrill
1996-06-04 19:05:16 +00:00
parent c48e0ee2b8
commit 24adc5bc3d
2 changed files with 4 additions and 6 deletions

View File

@@ -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;
}