task-detach-11.c 213 B

12345678910111213
  1. /* { dg-do run } */
  2. #include <omp.h>
  3. /* Test the detach clause when the task is undeferred. */
  4. int main (void)
  5. {
  6. omp_event_handle_t event;
  7. #pragma omp task detach (event)
  8. omp_fulfill_event (event);
  9. }