pthread: implement pthread_attr_[get|set]stack.

remove pthread_attr_[get|set]stackaddr from unimplemented functions.

Change-Id: I58807e86c75a189a576639ae1b2e4505a63700a5
Reviewed-on: https://review.haiku-os.org/c/1152
Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
Jérôme Duval
2019-03-07 16:55:14 +00:00
parent 29ec639a6d
commit 901c3d44b0
6 changed files with 103 additions and 13 deletions
@@ -46,6 +46,7 @@ typedef struct _pthread_attr {
int32 sched_priority;
size_t stack_size;
size_t guard_size;
void *stack_address;
} pthread_attr;
typedef struct _pthread_rwlockattr {