Removed assert's from routines which return the error ENOSYS.

This commit is contained in:
Joel Sherrill
1996-06-06 19:09:27 +00:00
parent 09b1f1ad2c
commit 782bdfd125
2 changed files with 0 additions and 24 deletions

View File

@@ -53,12 +53,6 @@ int sched_setscheduler(
const struct sched_param *param
)
{
/*
* Only supported for the "calling process" (i.e. this node).
*/
assert( pid == getpid() );
errno = ENOSYS;
return -1;
}
@@ -72,12 +66,6 @@ int sched_getscheduler(
pid_t pid
)
{
/*
* Only supported for the "calling process" (i.e. this node).
*/
assert( pid == getpid() );
errno = ENOSYS;
return -1;
}