Home
last modified time | relevance | path

Searched refs:PRIO_MAX (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/usr.bin/nice/
H A Dnice.c59 prio = strtonum(argv[1] + 1, PRIO_MIN, PRIO_MAX, &errstr); in main()
69 prio = strtonum(optarg, PRIO_MIN, PRIO_MAX, &errstr); in main()
/openbsd-src/usr.bin/renice/
H A Drenice.c170 new = p->pri > PRIO_MAX ? PRIO_MAX : in renice()
/openbsd-src/usr.bin/top/
H A Dcommands.c372 #if defined(PRIO_MIN) && defined(PRIO_MAX) in renice_procs()
374 if (procnum == -1 || prio < PRIO_MIN || prio > PRIO_MAX) in renice_procs()
/openbsd-src/sys/sys/
H A Dresource.h44 #define PRIO_MAX 20 macro
H A Dsched.h147 #define ESTCPULIM(e) min((e), NICE_WEIGHT * PRIO_MAX - SCHED_PPQ)
/openbsd-src/sys/kern/
H A Dkern_resource.c93 int low = NZERO + PRIO_MAX + 1; in sys_getpriority()
133 if (low == NZERO + PRIO_MAX + 1) in sys_getpriority()
205 if (n > PRIO_MAX) in donice()
206 n = PRIO_MAX; in donice()
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperltie.pod66 included) to access the PRIO_PROCESS, PRIO_MIN, and PRIO_MAX constants
154 if ($new_nicety > PRIO_MAX) {
157 $new_nicety, PRIO_MAX if $^W;
158 $new_nicety = PRIO_MAX;
/openbsd-src/sys/uvm/
H A Duvm_pmemrange.c2197 curproc->p_p->ps_nice = NZERO + PRIO_MAX; in uvm_pagezero_thread()