forgot to add prototypes for pthread_getschedparam and pthread_setschedparam(), sorry.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35106 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2010-01-16 19:33:34 +00:00
parent c9025d9114
commit 66204ee8cf
1 changed files with 5 additions and 0 deletions

View File

@ -280,6 +280,11 @@ extern int pthread_setcancelstate(int state, int *_oldState);
extern int pthread_setcanceltype(int type, int *_oldType);
extern void pthread_testcancel(void);
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);
/* thread specific data functions */
extern int pthread_key_create(pthread_key_t *key,
void (*destructorFunc)(void*));