|
From: Tom H. <th...@cy...> - 2004-08-26 12:26:40
|
CVS commit by thughes:
Include the filename in the system call trace for the access syscall.
M +1 -1 vg_syscalls.c 1.130
--- valgrind/coregrind/vg_syscalls.c #1.129:1.130
@@ -1839,5 +1839,5 @@ PRE(access)
{
/* int access(const char *pathname, int mode); */
- MAYBE_PRINTF("access ( %p, %d )\n", arg1,arg2);
+ MAYBE_PRINTF("access ( %p(%s), %d )\n", arg1,arg1,arg2);
SYSCALL_TRACK( pre_mem_read_asciiz, tid, "access(pathname)", arg1 );
}
|