summaryrefslogtreecommitdiffstats
path: root/sys/kern/ksched.c
Commit message (Collapse)AuthorAgeFilesLines
* 1. Add new defs for mins and maxs for the POSIX flavor priorities. Theydufault1998-05-191-6/+11
| | | | | | | | | | | | | end up being the same, but it doesn't look like you're comparing apples and oranges. 2. Use need_resched instead of reset_priority. This isn't right either, since for example you'll round-robin against equal priority FIFO processes when lowering the priority of another process, but this works better and a real fix needs to be in kern_synch and not out here. 3. This is not a device driver: copyin/copyout the structure.
* 1. Don't use "nosys" and generate coredumps for unconfigureddufault1998-05-181-2/+2
| | | | | | system calls - return ENOSYS per the spec. 2. Fix interface stub to set priority properly.
* Support compiling with `gcc -ansi'.bde1998-04-151-1/+1
|
* Include sys/resource.h to get PRIO_MAX.dufault1998-03-281-0/+1
|
* Finish _POSIX_PRIORITY_SCHEDULING. Needs P1003_1B anddufault1998-03-281-24/+28
| | | | | | | | | | | | | | | | _KPOSIX_PRIORITY_SCHEDULING options to work. Changes: Change all "posix4" to "p1003_1b". Misnamed files are left as "posix4" until I'm told if I can simply delete them and add new ones; Add _POSIX_PRIORITY_SCHEDULING system calls for FreeBSD and Linux; Add man pages for _POSIX_PRIORITY_SCHEDULING system calls; Add options to LINT; Minor fixes to P1003_1B code during testing.
* Reviewed by: msmith, bde long agodufault1998-03-041-0/+252
POSIX.4 headers and sysctl variables. Nothing should change unless POSIX4 is defined or _POSIX_VERSION is set to 199309.
OpenPOWER on IntegriCloud