Make sched_getparam() POSIX compliant.

This commit is contained in:
Ralf Corsepius
2009-02-06 21:02:31 +00:00
parent 7079f531a2
commit 2a6b824b46
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ int sched_setparam(
int sched_getparam(
pid_t pid,
const struct sched_param *param
struct sched_param *param
);
/*

View File

@@ -23,7 +23,7 @@
int sched_getparam(
pid_t pid __attribute__((unused)),
const struct sched_param *param __attribute__((unused))
struct sched_param *param __attribute__((unused))
)
{
rtems_set_errno_and_return_minus_one( ENOSYS );