aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_Malloc.F90
blob: 55d277511f97ea8caa694141d8ab000896a8827e (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*@@
  @file    $RCSfile$
  @author  $Author$
  @date    $Date$
  @desc
           Fortran 90 interface declarations for the routines
           which have their C declarations in cctk_Malloc.h
  @enddesc
  @version $Header$
@@*/

#include "cctk.h"

module cctk_Malloc
  implicit none

  interface

     subroutine CCTK_MemStat
       implicit none
     end subroutine CCTK_MemStat

     subroutine CCTK_TotalMemory (amount)
       implicit none
       integer amount
     end subroutine CCTK_TotalMemory

     subroutine CCTK_MemTicketCash (diff, this_ticket)
       implicit none
       integer diff
       integer this_ticket
     end subroutine CCTK_MemTicketCash

     subroutine CCTK_MemTicketRequest (ticket)
       implicit none
       integer ticket
     end subroutine CCTK_MemTicketRequest

     subroutine CCTK_MemTicketDelete (ierr, this_ticket)
       implicit none
       integer ierr
       integer this_ticket
     end subroutine CCTK_MemTicketDelete

  end interface
  
end module cctk_Malloc