Advertisement
Guest User

Untitled

a guest
Sep 9th, 2015
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. int main(void) {
  2.   subsetphp_gc_init();
  3.  
  4.   printf("Running subsetphp GC test\n");
  5.  
  6.   value val;
  7.  
  8.   for (int i = 0; i < 1000000; i++) {
  9.     val = caml_alloc(1024, 0);
  10.   }
  11.  
  12.   return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement