12345678910111213141516171819202122232425262728293031323334353637383940 |
- #include <assert.h>
- #include "pthreadP.h"
- int
- attribute_protected
- __pthread_attr_getscope (
- const pthread_attr_t *attr,
- int *scope)
- {
- struct pthread_attr *iattr;
- assert (sizeof (*attr) >= sizeof (struct pthread_attr));
- iattr = (struct pthread_attr *) attr;
-
- *scope = (iattr->flags & ATTR_FLAG_SCOPEPROCESS
- ? PTHREAD_SCOPE_PROCESS : PTHREAD_SCOPE_SYSTEM);
- return 0;
- }
- strong_alias (__pthread_attr_getscope, pthread_attr_getscope)
|