blob: e0e8d3fb1033df951264bbd560c0b7559425b896 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include "pthread_impl.h"
int pthread_attr_setguardsize(pthread_attr_t *a, size_t size)
{
if (size > SIZE_MAX/8) return EINVAL;
a->__guardsize = size - DEFAULT_GUARD_SIZE;
return 0;
}
|