]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Deleted FAQ #2, as it is no longer relevant for the head, thanks to Jeremy's
authorNicholas Nethercote <n.nethercote@gmail.com>
Sun, 2 Nov 2003 16:27:39 +0000 (16:27 +0000)
committerNicholas Nethercote <n.nethercote@gmail.com>
Sun, 2 Nov 2003 16:27:39 +0000 (16:27 +0000)
syscalls changes.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1980

FAQ.txt

diff --git a/FAQ.txt b/FAQ.txt
index e306b209e99388521999154615decd1694ff5b53..6be5cc6912dd012293e95a27b24a9b991d32735a 100644 (file)
--- a/FAQ.txt
+++ b/FAQ.txt
@@ -40,23 +40,7 @@ A1. When the program exits, valgrind runs the procedure
 
 -----------------------------------------------------------------
 
-Q2. My program dies complaining that syscall 197 is unimplemented.
-
-A2. 197, which is fstat64, is supported by valgrind.  The problem is
-    that the /usr/include/asm/unistd.h on the machine on which your
-    valgrind was built, doesn't match your kernel -- or, to be more 
-    specific, glibc is asking your kernel to do a syscall which is
-    not listed in /usr/include/asm/unistd.h.
-
-    The fix is simple.  Somewhere near the top of
-    coregrind/vg_syscalls.c, add the following line:
-
-       #define __NR_fstat64            197
-
-    Rebuild and try again.  The above line should appear before any
-    uses of the __NR_fstat64 symbol in that file.  If you look at the
-    place where __NR_fstat64 is used in vg_syscalls.c, it will be
-    obvious why this fix works.
+Q2. [Question erased, as it is no longer relevant]
 
 -----------------------------------------------------------------