|
From: <sv...@va...> - 2005-10-16 13:52:56
|
Author: tom
Date: 2005-10-16 14:52:50 +0100 (Sun, 16 Oct 2005)
New Revision: 4938
Log:
Removed remaining traces of address space padding technology as it
is not longer relevant with the new address space manager.
Modified:
trunk/coregrind/m_syswrap/syswrap-main.c
Modified: trunk/coregrind/m_syswrap/syswrap-main.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_syswrap/syswrap-main.c 2005-10-16 00:17:37 UTC (rev=
4937)
+++ trunk/coregrind/m_syswrap/syswrap-main.c 2005-10-16 13:52:50 UTC (rev=
4938)
@@ -722,7 +722,6 @@
/* Syscall may block, so run it asynchronously */
vki_sigset_t mask;
=20
-// vg_assert(!(sci->flags & PadAddr));
PRINT(" --> [async] ... \n");
=20
mask =3D tst->sig_mask;
@@ -769,9 +768,6 @@
guest state. Indeed doing so could be construed as
incorrect. */
=20
-// if (sci->flags & PadAddr)
-// VG_(pad_address_space)(VG_(client_end));
-
SysRes sres=20
=3D VG_(do_syscall6)(sysno, sci->args.arg1, sci->args.arg2,=20
sci->args.arg3, sci->args.arg4,=20
@@ -891,13 +887,6 @@
VG_TDICT_CALL(tool_post_syscall, tid, sysno, res);
}
=20
-//zz if (flags & PadAddr) {
-//zz vg_assert(!mayBlock);
-//zz VG_(unpad_address_space)(VG_(client_end));
-//zz //VG_(sanity_check_memory)();
-//zz }
-//zz=20
-
/* The syscall is done. */
sci->status.what =3D SsIdle;
=20
|