aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_Malloc.F90
diff options
context:
space:
mode:
Diffstat (limited to 'src/cctk_Malloc.F90')
-rw-r--r--src/cctk_Malloc.F9047
1 files changed, 47 insertions, 0 deletions
diff --git a/src/cctk_Malloc.F90 b/src/cctk_Malloc.F90
new file mode 100644
index 0000000..55d2775
--- /dev/null
+++ b/src/cctk_Malloc.F90
@@ -0,0 +1,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