summaryrefslogtreecommitdiff
path: root/include/pthread.h
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2003-02-10 08:48:04 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2003-02-10 08:48:04 +0000
commit4e44912c6c8f199db5f741b851854e31767b5027 (patch)
tree9cfde8705da32bc1df807d3472d6599f73e66326 /include/pthread.h
parente6cfb1ccd32b55026011103015f7468ef4081bc2 (diff)
Notes
Diffstat (limited to 'include/pthread.h')
-rw-r--r--include/pthread.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/pthread.h b/include/pthread.h
index 83f36e440404..647e70283dc0 100644
--- a/include/pthread.h
+++ b/include/pthread.h
@@ -190,6 +190,9 @@ enum pthread_mutextype {
*/
__BEGIN_DECLS
int pthread_attr_destroy(pthread_attr_t *);
+int pthread_attr_getstack(const pthread_attr_t * __restrict,
+ void ** __restrict stackaddr,
+ size_t * __restrict stacksize);
int pthread_attr_getstacksize(const pthread_attr_t *, size_t *);
int pthread_attr_getguardsize(const pthread_attr_t *, size_t *);
int pthread_attr_getstackaddr(const pthread_attr_t *, void **);
@@ -197,6 +200,7 @@ int pthread_attr_getdetachstate(const pthread_attr_t *, int *);
int pthread_attr_init(pthread_attr_t *);
int pthread_attr_setstacksize(pthread_attr_t *, size_t);
int pthread_attr_setguardsize(pthread_attr_t *, size_t);
+int pthread_attr_setstack(pthread_attr_t *, void *, size_t);
int pthread_attr_setstackaddr(pthread_attr_t *, void *);
int pthread_attr_setdetachstate(pthread_attr_t *, int);
void pthread_cleanup_pop(int);