소스 검색

Changed values on test.c to check coalescing.

Ioannis Koutras 14 년 전
부모
커밋
163ec350c2
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      examples/test.c

+ 2 - 2
examples/test.c

@@ -4,9 +4,9 @@
 int main(void) {
     void *p1, *p2, *p3;
 
-    p1 = custom_malloc((size_t) 1024);
+    p1 = custom_malloc((size_t) 1001);
     custom_free(p1);
-    p2 = custom_malloc((size_t) 2855);
+    p2 = custom_malloc((size_t) 1900);
     custom_free(p2);
     p3 = custom_malloc((size_t) 3018);
     custom_free(p3);