i386 vsyscall support (vdso-provided sysenter/syscall instruction based)
[oweals/musl.git] / src / thread / pthread_attr_getguardsize.c
1 #include "pthread_impl.h"
2
3 int pthread_attr_getguardsize(const pthread_attr_t *restrict a, size_t *restrict size)
4 {
5         *size = a->_a_guardsize + DEFAULT_GUARD_SIZE;
6         return 0;
7 }