Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
thread
pthread_attr_setguardsize.c
pretty
plain
permalink
blame
history
•
8 lines
•
168 B
1
#include "pthread_impl.h"
2
3
int pthread_attr_setguardsize(pthread_attr_t *a, size_t size)
4
{
5
	if (size > SIZE_MAX/8) return EINVAL;
6
	a->_a_guardsize = size;
7
	return 0;
8
}