|
From: Jeremy F. <je...@go...> - 2004-03-02 21:45:16
|
CVS commit by fitzhardinge:
Don't intercept mmap yet, until everything else is in place to deal
with it.
M +2 -0 vg_glibc.c 1.2
--- valgrind/coregrind/vg_glibc.c #1.1:1.2
@@ -34,6 +34,8 @@ void *sbrk(ptrdiff_t inc)
int __sbrk(void *) __attribute__((alias ("sbrk")));
+#if 0
void *mmap(void *addr, size_t len, int prot, int flags, int fd, __off_t offset)
{
return VG_(mmap)(addr, len, prot, flags, fd, offset);
}
+#endif
|