changeset 264:00224d119299

fix ALLOCATE_SIZE
author tobaru
date Sun, 26 Jan 2020 17:11:52 +0900
parents a78f9919fcf0
children f9169495d476
files src/gearsTools/lib/Gears/Context/Template/XV6.pm
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/gearsTools/lib/Gears/Context/Template/XV6.pm	Sun Jan 26 16:51:46 2020 +0900
+++ b/src/gearsTools/lib/Gears/Context/Template/XV6.pm	Sun Jan 26 17:11:52 2020 +0900
@@ -40,7 +40,7 @@
 #define free(a)  free(a)
 #endif
 
-#define ALLOCATE_SIZE 20000000
+#define ALLOCATE_SIZE 12 
 #define NEW(type) (type*)(calloc(1, sizeof(type)))
 #define NEWN(n, type) (type*)(calloc(n, sizeof(type)))