pthread_attr_init.c\thread\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/thread/pthread_attr_init.c
blob: 463a8d20751256fccce53af7ae6925de7fc1e9ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include "pthread_impl.h"
int pthread_attr_init(pthread_attr_t *a)
{
	*a = (pthread_attr_t){0};
	__acquire_ptc();
	a->_a_stacksize = __default_stacksize;
	a->_a_guardsize = __default_guardsize;
	__release_ptc();
	return 0;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月06日 14:36:38 +0000

AltStyle によって変換されたページ (->オリジナル) /