exitloop Subroutine

subroutine exitloop(signum)

Arguments

Type IntentOptional Attributes Name
integer :: signum

Contents

Source Code


Source Code

      subroutine exitloop(signum)
        integer :: signum
        write(*,*)'Caught SIGINT. Exiting infinite loop.'
        loop=.false.
      end subroutine exitloop