diff options
author | rpj <rpj> | 2002-01-04 04:53:36 +0000 |
---|---|---|
committer | rpj <rpj> | 2002-01-04 04:53:36 +0000 |
commit | 6922362c66bbfaa3ac9b7bb6be24368d790d28d6 (patch) | |
tree | c63857fdc9b19e00bf29a07b246e3cdb7d603fd9 /implement.h | |
parent | 6f68e7b50e0bb837d02dc2cb8a7bc5887534d7b8 (diff) |
* attr.c (pthread_attr_setscope): Add more error
checking and actually store the scope value even
though it's not really necessary.
(pthread_attr_getscope): Return stored value.
* implement.h (pthread_attr_t_): Add new scope element.
* ANNOUNCE: Fix out of date comment next to
pthread_attr_setscope in conformance section.
Diffstat (limited to 'implement.h')
-rw-r--r-- | implement.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/implement.h b/implement.h index 5eb46f4..3f2690e 100644 --- a/implement.h +++ b/implement.h @@ -127,6 +127,7 @@ struct pthread_attr_t_ { int detachstate; struct sched_param param; int inheritsched; + int contentionscope; #if HAVE_SIGSET_T sigset_t sigmask; #endif /* HAVE_SIGSET_T */ |