changes, large objs processing not finished yet
[IRC.git] / Robust / src / Runtime / mem.h
index 9fa64726529c9930332187cfe8d509f9e299ab98..759d983f25740f699330a5ba0d116dbb31824490 100644 (file)
@@ -27,7 +27,7 @@ void * mycalloc(int m, int size);
 void * mycalloc_i(int m, int size);
 void myfree(void * ptr);
 #define RUNMALLOC(x) mycalloc(1,x) // handle interruption inside
-#define RUNMALLOC_I(x) mycalloc_i(1,x) // with interruption blocked beforehand
+#define RUNMALLOC_I(x) mycalloc_i(1,x) //with interruption blocked beforehand
 #define RUNFREE(x) myfree(x)
 #ifdef MULTICORE_GC
 void * mycalloc_share(struct garbagelist * stackptr, int m, int size);