Changeset: 7db12a145375 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=7db12a145375
Modified Files:
        gdk/gdk.h
        gdk/gdk_private.h
Branch: Oct2014
Log Message:

Relegate HEAPfree to private part of gdk.


diffs (23 lines):

diff --git a/gdk/gdk.h b/gdk/gdk.h
--- a/gdk/gdk.h
+++ b/gdk/gdk.h
@@ -1060,7 +1060,6 @@ typedef int (*GDKfcn) ();
  * These routines should be used to alloc free or extend heaps; they
  * isolate you from the different ways heaps can be accessed.
  */
-gdk_export int HEAPfree(Heap *h);
 gdk_export int HEAPextend(Heap *h, size_t size, int mayshare);
 gdk_export size_t HEAPvmsize(Heap *h);
 gdk_export size_t HEAPmemsize(Heap *h);
diff --git a/gdk/gdk_private.h b/gdk/gdk_private.h
--- a/gdk/gdk_private.h
+++ b/gdk/gdk_private.h
@@ -152,6 +152,8 @@ int HEAPcopy(Heap *dst, Heap *src)
        __attribute__((__visibility__("hidden")));
 int HEAPdelete(Heap *h, const char *o, const char *ext)
        __attribute__((__visibility__("hidden")));
+int HEAPfree(Heap *h)
+       __attribute__((__visibility__("hidden")));
 int HEAPload(Heap *h, const char *nme, const char *ext, int trunc)
        __attribute__((__visibility__("hidden")));
 int HEAPsave(Heap *h, const char *nme, const char *ext)
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to