Sign in
gnu
/
gcc
/
967424dcde6bf2d821b581b8f75b5a839e650fed
/
.
/
libgomp
/
testsuite
/
libgomp.c-c++-common
/
task-detach-11.c
blob: dd002dcc8120b890b861a32972ca4719db23d34f [
file
] [
log
] [
blame
]
/* { dg-do run } */
#include
<omp.h>
/* Test the detach clause when the task is undeferred. */
int
main
(
void
)
{
omp_event_handle_t
event
;
#pragma
omp task detach
(
event
)
omp_fulfill_event
(
event
);
}