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