Gitiles
Code Review
Sign In
review.shift-gmbh.com
/
SHIFTPHONES
/
mainline
/
linux
/
f3587d76da05f68098ddb1cb3c98cc6a9e8a402c
/
.
/
tools
/
build
/
feature
/
test-pthread-barrier.c
blob: 0558d9334d971be555aab202df534ef5c5afdf15 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0
#include
<stdint.h>
#include
<pthread.h>
int
main
(
void
)
{
pthread_barrier_t
barrier
;
pthread_barrier_init
(&
barrier
,
NULL
,
1
);
pthread_barrier_wait
(&
barrier
);
return
pthread_barrier_destroy
(&
barrier
);
}