summaryrefslogtreecommitdiffstats
path: root/lib/libthr/thread/thr_init.c
diff options
context:
space:
mode:
authordavidxu <davidxu@FreeBSD.org>2006-09-21 04:21:30 +0000
committerdavidxu <davidxu@FreeBSD.org>2006-09-21 04:21:30 +0000
commitd2c57b7fad5ce91e8b900f315b41d142831b90f1 (patch)
treef7b8debfd8a0b2054c46d867116922ddcfad5995 /lib/libthr/thread/thr_init.c
parent92bd1e76b1d6d685331ec54d7b5703a34d37f84e (diff)
downloadFreeBSD-src-d2c57b7fad5ce91e8b900f315b41d142831b90f1.zip
FreeBSD-src-d2c57b7fad5ce91e8b900f315b41d142831b90f1.tar.gz
use rtprio_thread system call to get or set thread priority.
Diffstat (limited to 'lib/libthr/thread/thr_init.c')
-rw-r--r--lib/libthr/thread/thr_init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libthr/thread/thr_init.c b/lib/libthr/thread/thr_init.c
index f0da5f6..3624cf8 100644
--- a/lib/libthr/thread/thr_init.c
+++ b/lib/libthr/thread/thr_init.c
@@ -411,8 +411,8 @@ init_main_thread(struct pthread *thread)
thread->state = PS_RUNNING;
- thr_getscheduler(thread->tid, &thread->attr.sched_policy,
- &sched_param, sizeof(sched_param));
+ _thr_getscheduler(thread->tid, &thread->attr.sched_policy,
+ &sched_param);
thread->attr.prio = sched_param.sched_priority;
/* Others cleared to zero by thr_alloc() */
OpenPOWER on IntegriCloud