HomeSort by: relevance | last modified time | path
    Searched refs:pri_t (Results 1 - 25 of 35) sorted by relevancy

1 2

  /src/sys/sys/
threadpool.h 64 int threadpool_get(struct threadpool **, pri_t);
65 void threadpool_put(struct threadpool *, pri_t);
67 int threadpool_percpu_get(struct threadpool_percpu **, pri_t);
68 void threadpool_percpu_put(struct threadpool_percpu *, pri_t);
syncobj.h 49 void (*sobj_changepri)(struct lwp *, pri_t);
50 void (*sobj_lendpri)(struct lwp *, pri_t);
kthread.h 54 int kthread_create(pri_t, int, struct cpu_info *,
workqueue.h 55 void (*)(struct work *, void *), void *, pri_t, int, int);
sleepq.h 65 void sleepq_changepri(lwp_t *, pri_t);
66 void sleepq_lendpri(lwp_t *, pri_t);
sleeptab.h 101 pri_t ts_eprio;
133 void turnstile_changepri(lwp_t *, pri_t);
lwp.h 114 pri_t l_boostpri; /* l: boosted priority after blocking */
115 pri_t l_priority; /* l: scheduler priority */
116 pri_t l_inheritedprio;/* l: inherited priority */
117 pri_t l_protectprio; /* l: for PTHREAD_PRIO_PROTECT */
118 pri_t l_auxprio; /* l: max(inherit,protect) priority */
346 pri_t lwp_eprio(lwp_t *);
351 void lwp_changepri(lwp_t *, pri_t);
352 void lwp_lendpri(lwp_t *, pri_t);
sched.h 173 volatile pri_t spc_curpriority;/* s: usrpri of curlwp */
174 pri_t spc_maxpriority;/* m: highest priority queued */
244 void sched_resched_cpu(struct cpu_info *, pri_t, bool);
proc.h 516 int tsleep(wchan_t, pri_t, const char *, int);
517 int mtsleep(wchan_t, pri_t, const char *, int, kmutex_t *);
types.h 335 typedef int pri_t; typedef in typeref:typename:int
  /src/sys/rump/librump/rumpkern/
sleepq.c 161 sleepq_changepri(struct lwp *l, pri_t pri)
167 sleepq_lendpri(struct lwp *l, pri_t pri)
212 lwp_changepri(lwp_t *l, pri_t pri)
219 lwp_lendpri(lwp_t *l, pri_t pri)
225 pri_t
ltsleep.c 121 tsleep(wchan_t ident, pri_t prio, const char *wmesg, int timo)
141 mtsleep(wchan_t ident, pri_t prio, const char *wmesg, int timo, kmutex_t *lock)
threads.c 138 kthread_create(pri_t pri, int flags, struct cpu_info *ci,
  /src/sys/kern/
sys_sched.c 69 static pri_t
70 convert_pri(lwp_t *l, int policy, pri_t pri)
113 pri_t pri;
157 pri_t kpri;
554 pri_t pri;
673 pri_t priority;
677 priority = (pri_t)(unsigned long)arg3;
kern_threadpool.c 108 "pri_t"/*pri*/);
110 "pri_t"/*pri*/);
112 "pri_t"/*pri*/);
114 "struct threadpool *"/*pool*/, "pri_t"/*pri*/);
116 "struct threadpool *"/*pool*/, "pri_t"/*pri*/);
119 "pri_t"/*pri*/);
121 "pri_t"/*pri*/);
123 "pri_t"/*pri*/);
125 "struct threadpool *"/*pool*/, "pri_t"/*pri*/);
127 "struct threadpool *"/*pool*/, "pri_t"/*pri*/)
    [all...]
sched_m2.c 72 static pri_t high_pri[PRI_COUNT]; /* Map for priority increase */
116 pri_t p;
199 pri_t pri = l->l_priority - n;
248 pri_t prio;
kern_turnstile.c 212 pri_t prio;
318 pri_t prio;
511 turnstile_changepri(lwp_t *l, pri_t pri)
sched_4bsd.c 105 pri_t pri = PRI_NONE;
398 pri_t pri;
kern_runq.c 92 static void *sched_getrq(struct schedstate_percpu *, const pri_t);
174 sched_getrq(struct schedstate_percpu *spc, const pri_t prio)
190 const pri_t eprio = lwp_eprio(l);
263 const pri_t eprio = lwp_eprio(l);
320 sched_resched_cpu(struct cpu_info *ci, pri_t pri, bool unlock)
496 pri_t bestpri, curpri;
571 pri_t eprio;
kern_sleepq.c 202 const pri_t pri = lwp_eprio(l);
609 sleepq_changepri(lwp_t *l, pri_t pri)
625 sleepq_lendpri(lwp_t *l, pri_t pri)
subr_workqueue.c 65 pri_t wq_prio;
79 "pri_t"/*prio*/,
210 pri_t prio, int ipl)
301 pri_t prio, int ipl, int flags)
kern_synch.c 114 static void sched_changepri(struct lwp *, pri_t);
115 static void sched_lendpri(struct lwp *, pri_t);
185 tsleep(wchan_t ident, pri_t priority, const char *wmesg, int timo)
210 mtsleep(wchan_t ident, pri_t priority, const char *wmesg, int timo,
1055 sched_changepri(struct lwp *l, pri_t pri)
1084 sched_lendpri(struct lwp *l, pri_t pri)
kern_kthread.c 64 kthread_create(pri_t pri, int flag, struct cpu_info *ci,
  /src/tests/kernel/threadpool_tester/
threadpool_tester.c 61 pri_is_valid(pri_t pri)
446 pri_t pri;
  /src/tests/modules/threadpool_tester/
threadpool_tester.c 61 pri_is_valid(pri_t pri)
446 pri_t pri;

Completed in 22 milliseconds

1 2