We often get bug reports for an unhandled system call which don't
make it clear what platform is in use, which makes it impossible
to know which system call it is.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15033
/*OUT*/SyscallStatus* status,
/*OUT*/UWord* flags )
{
- VG_(dmsg)("WARNING: unhandled syscall: %s\n",
- VG_SYSNUM_STRING(args->sysno));
+ VG_(dmsg)("WARNING: unhandled %s syscall: %s\n",
+ VG_PLATFORM, VG_SYSNUM_STRING(args->sysno));
if (VG_(clo_verbosity) > 1) {
VG_(get_and_pp_StackTrace)(tid, VG_(clo_backtrace_size));
}
-----------------------------------------------------
9999: 9999 1e
-----------------------------------------------------
-WARNING: unhandled syscall: 9999
+WARNING: unhandled x86-linux syscall: 9999
You may be able to write your own handler.
Read the file README_MISSING_SYSCALL_OR_IOCTL.
Nevertheless we consider this a bug. Please report