mirror of
https://github.com/fluencelabs/musl
synced 2025-06-28 14:11:56 +00:00
implement barrier attribute functions (essentially no-ops)
This commit is contained in:
7
src/thread/pthread_barrierattr_getpshared.c
Normal file
7
src/thread/pthread_barrierattr_getpshared.c
Normal file
@ -0,0 +1,7 @@
|
||||
#include "pthread_impl.h"
|
||||
|
||||
int pthread_barrierattr_getpshared(const pthread_barrierattr_t *a, int *pshared)
|
||||
{
|
||||
*pshared = *a;
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user