summaryrefslogtreecommitdiff
path: root/src/include/cctk_Cache.h
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-11-30 23:50:31 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-11-30 23:50:31 +0000
commita10e0e2d450d0ed23fdf9d6c0e820995e3756140 (patch)
tree8964c80ce1b12f4ef0a0f376ecde68161bb5f818 /src/include/cctk_Cache.h
parent2520ea110b9d159c4644261d27db77b683abaf36 (diff)
New cache alignment stuff.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1178 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_Cache.h')
-rw-r--r--src/include/cctk_Cache.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/include/cctk_Cache.h b/src/include/cctk_Cache.h
new file mode 100644
index 00000000..1790bf63
--- /dev/null
+++ b/src/include/cctk_Cache.h
@@ -0,0 +1,27 @@
+ /*@@
+ @header cctk_Cache.h
+ @date Tue Nov 30 09:31:45 1999
+ @author Tom Goodale
+ @desc
+ Prototypes for cache routines.
+ @enddesc
+ @version $Header$
+ @@*/
+
+#ifndef _CCTK_CACHE_H_
+#define _CCTK_CACHE_H_
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+void *CCTK_CacheMalloc(unsigned index,
+ unsigned long size,
+ void **realstart);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _CCTK_CACHE_H_ */