From c1080713adf0069c50e76278954f90c35946a988 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Mon, 10 Feb 2020 10:38:37 +0100 Subject: Add hidden prototypes for __sched_getparam, __sched_getscheduler This will enable them to be used in libc.so without PLTs. Reviewed-by: Adhemerval Zanella --- include/sched.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/sched.h') diff --git a/include/sched.h b/include/sched.h index 4abc440176..b0bf971c93 100644 --- a/include/sched.h +++ b/include/sched.h @@ -7,10 +7,12 @@ extern int __sched_setparam (__pid_t __pid, const struct sched_param *__param); libc_hidden_proto (__sched_setparam) extern int __sched_getparam (__pid_t __pid, struct sched_param *__param); +libc_hidden_proto (__sched_getparam) extern int __sched_setscheduler (__pid_t __pid, int __policy, const struct sched_param *__param); libc_hidden_proto (__sched_setscheduler) extern int __sched_getscheduler (__pid_t __pid); +libc_hidden_proto (__sched_getscheduler) extern int __sched_yield (void); libc_hidden_proto (__sched_yield) extern int __sched_get_priority_max (int __algorithm); -- cgit 1.4.1