2022-11-04 09:35:42 -07:00

18 lines
436 B
Fortran

! @@name: init_lock.1
! @@type: F-fixed
! @@operation: compile
! @@expect: success
! @@version: pre_omp_3.0
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