aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_Termination.F90
blob: d4c672d9e393dc78212c892bc1741a48f254be3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*@@
  @file    $RCSfile$
  @author  $Author$
  @date    $Date$
  @desc
           Fortran 90 interface declarations for the routines
           which have their C declarations in cctk_Termination.h
  @enddesc
  @version $Header$
@@*/

#include "cctk.h"

module cctk_Termination
  implicit none

  interface

     subroutine CCTK_TerminationReached (ires, cctkGH)
       implicit none
       integer               ires
       CCTK_POINTER_TO_CONST cctkGH
     end subroutine CCTK_TerminationReached
     
     subroutine CCTK_TerminateNext (cctkGH)
       implicit none
       CCTK_POINTER_TO_CONST cctkGH
     end subroutine CCTK_TerminateNext
     
  end interface
  
end module cctk_Termination