|
From: <sv...@va...> - 2005-06-18 15:09:30
|
Author: njn
Date: 2005-06-18 16:09:28 +0100 (Sat, 18 Jun 2005)
New Revision: 3936
Log:
Replace use of __amd64__ with VGA_amd64.
Modified:
trunk/coregrind/m_libcsignal.c
Modified: trunk/coregrind/m_libcsignal.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/coregrind/m_libcsignal.c 2005-06-18 15:07:39 UTC (rev 3935)
+++ trunk/coregrind/m_libcsignal.c 2005-06-18 15:09:28 UTC (rev 3936)
@@ -224,7 +224,7 @@
// __NR_rt_sigpending. This function will have to be abstracted in some
// way to account for this. In the meantime, the easy option is to forg=
et
// about it for AMD64 until it's needed.
-#ifdef __amd64__
+#if defined(VGA_amd64)
I_die_here;
#else
SysRes res =3D VG_(do_syscall1)(__NR_sigpending, (UWord)set);
|