From 7da858304e6b98df4e5b3a5ec16c3f73ed56a46a Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Thu, 27 May 2021 20:59:29 -0400 Subject: [PATCH] fix: correct set prio symbol --- runtime/src/runtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/runtime.c b/runtime/src/runtime.c index e0f5791..7b061fc 100644 --- a/runtime/src/runtime.c +++ b/runtime/src/runtime.c @@ -131,7 +131,7 @@ runtime_call_setrlimit(int id, rlim_t c, rlim_t m) } void -runtime_pthread_prio(pthread_t thread, unsigned int nice) +runtime_set_pthread_prio(pthread_t thread, unsigned int nice) { struct sched_param sp; int policy;