diff options
author | William Pitcock <nenolod@dereferenced.org> | 2018-02-02 20:08:55 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-02-03 10:04:24 -0500 |
commit | 7c709f2d4f9872d1b445f760b0e68da89e256b9e (patch) | |
tree | 6676308cc593374bc1ee601456665848ddde74eb /src/internal/pthread_impl.h | |
parent | b3ae7beabb9f0c219bb8a8b63567a01c6530c1ac (diff) | |
download | musl-7c709f2d4f9872d1b445f760b0e68da89e256b9e.tar.gz musl-7c709f2d4f9872d1b445f760b0e68da89e256b9e.tar.xz musl-7c709f2d4f9872d1b445f760b0e68da89e256b9e.zip |
store pthread stack guard sizes for pthread_getattr_np
Diffstat (limited to 'src/internal/pthread_impl.h')
-rw-r--r-- | src/internal/pthread_impl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/internal/pthread_impl.h b/src/internal/pthread_impl.h index f0b2c20c..4a0db987 100644 --- a/src/internal/pthread_impl.h +++ b/src/internal/pthread_impl.h @@ -46,6 +46,7 @@ struct pthread { char *dlerror_buf; int dlerror_flag; void *stdio_locks; + size_t guard_size; uintptr_t canary_at_end; void **dtv_copy; }; |