Add pthread_setschedprio() prototype

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@139 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2007-03-24 15:54:42 +00:00
parent b9d2a2b971
commit 3d5eebad25
1 changed files with 1 additions and 0 deletions

View File

@ -263,6 +263,7 @@ EXTERN int pthread_getschedparam(pthread_t thread, int *policy,
struct sched_param *param); struct sched_param *param);
EXTERN int pthread_setschedparam(pthread_t thread, int policy, EXTERN int pthread_setschedparam(pthread_t thread, int policy,
const struct sched_param *param); const struct sched_param *param);
EXTERN int pthread_setschedprio(pthread_t thread, int prio);
/* Thread-specific Data Interfaces */ /* Thread-specific Data Interfaces */