From 3d5eebad258cafecbb53c953032073a85242282d Mon Sep 17 00:00:00 2001 From: patacongo Date: Sat, 24 Mar 2007 15:54:42 +0000 Subject: [PATCH] Add pthread_setschedprio() prototype git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@139 42af7a65-404d-4744-a932-0658087f49c3 --- include/pthread.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/pthread.h b/include/pthread.h index 3ae818b9ac7..0f4a027fe4a 100644 --- a/include/pthread.h +++ b/include/pthread.h @@ -263,6 +263,7 @@ EXTERN int pthread_getschedparam(pthread_t thread, int *policy, struct sched_param *param); EXTERN int pthread_setschedparam(pthread_t thread, int policy, const struct sched_param *param); +EXTERN int pthread_setschedprio(pthread_t thread, int prio); /* Thread-specific Data Interfaces */