repo.or.cz
/
gcc-git-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc-git-mirror.git]
/
libgomp
/
testsuite
/
libgomp.fortran
/
task-detach-11.f90
blob
b33baff7f687d9e61554ebbe6f228f56b45eafb7
1
! { dg-do run }
2
3
! Test the detach clause when the task is undeferred.
4
5
program
task_detach_11
6
use
omp_lib
7
8
integer
(
kind
=
omp_event_handle_kind
) ::
detach_event
9
10
!$omp task detach (detach_event)
11
call
omp_fulfill_event
(
detach_event
)
12
!$omp end task
13
end program