Nicholas Nethercote 2f53ead94d Fix problem with brk(). Thanks to Paull Mackerras for the patch.
Added a regression test for it.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2619
2004-08-25 13:43:44 +00: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;
}