aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_Malloc1.F90
blob: ac08571af0c63ac669b186f24de4439a2d7ebd74 (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
#include "cctk.h"

! This is the name of a subroutine, so the module must be called differently.
module cctk_Malloc1
  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_Malloc1