1
0
mirror of https://github.com/ioacademy-jikim/debugging synced 2025-06-08 08:26:14 +00:00
2015-12-13 22:34:58 +09:00

26 lines
415 B
C

#include <stdio.h>
#include <unistd.h>
#define MAX 3000
// At one time, this was causing a seg fault within Valgrind -- it was when
// extending the brk segment onto a new page. Fixed in vg_syscalls.c 1.129.
int main () {
char* ptr;
int i;
for (i=0; i<MAX; i++) {
ptr = sbrk(1);
if (ptr == (void*)-1) {
printf ("sbrk() failed!\n");
return 0;
}
*ptr = 0;
}
return 0;
}