pike.git
/
src
/
program.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.c:64:
ba_free(&program_allocator, p); } void count_memory_in_programs(size_t *num, size_t *_size) { size_t size; struct program *p; ba_count_all(&program_allocator, num, &size); for(p=first_program;p;p=p->next) { size+=p->total_size - sizeof (struct program); }
+
*_size = size;
} void free_all_program_blocks() { ba_destroy(&program_allocator); } /* #define COMPILER_DEBUG */ /* #define PROGRAM_BUILD_DEBUG */ #ifdef COMPILER_DEBUG