mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
18 lines
426 B
Fortran
18 lines
426 B
Fortran
! @@name: init_lock.1f
|
|
! @@type: F-fixed
|
|
! @@compilable: yes
|
|
! @@linkable: no
|
|
! @@expect: success
|
|
FUNCTION NEW_LOCKS()
|
|
USE OMP_LIB ! or INCLUDE "omp_lib.h"
|
|
INTEGER(OMP_LOCK_KIND), DIMENSION(1000) :: NEW_LOCKS
|
|
INTEGER I
|
|
|
|
!$OMP PARALLEL DO PRIVATE(I)
|
|
DO I=1,1000
|
|
CALL OMP_INIT_LOCK(NEW_LOCKS(I))
|
|
END DO
|
|
!$OMP END PARALLEL DO
|
|
|
|
END FUNCTION NEW_LOCKS
|