12345678910111213141516171819202122232425262728293031323334353637383940 |
- #include <assert.h>
- #include <string.h>
- #include "pthreadP.h"
- int
- attribute_protected
- __pthread_attr_getschedparam (
- const pthread_attr_t *attr,
- struct sched_param *param)
- {
- struct pthread_attr *iattr;
- assert (sizeof (*attr) >= sizeof (struct pthread_attr));
- iattr = (struct pthread_attr *) attr;
-
- memcpy (param, &iattr->schedparam, sizeof (struct sched_param));
- return 0;
- }
- strong_alias (__pthread_attr_getschedparam, pthread_attr_getschedparam)
|