|
From: <sv...@va...> - 2005-09-20 23:04:57
|
Author: sewardj
Date: 2005-09-21 00:04:49 +0100 (Wed, 21 Sep 2005)
New Revision: 4712
Log:
Remove extraneous \ns in messages.
Modified:
branches/ASPACEM/coregrind/m_scheduler/scheduler.c
Modified: branches/ASPACEM/coregrind/m_scheduler/scheduler.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
--- branches/ASPACEM/coregrind/m_scheduler/scheduler.c 2005-09-20 21:14:2=
4 UTC (rev 4711)
+++ branches/ASPACEM/coregrind/m_scheduler/scheduler.c 2005-09-20 23:04:4=
9 UTC (rev 4712)
@@ -944,7 +944,7 @@
case VG_USERREQ__CLIENT_CALL0: {
UWord (*f)(ThreadId) =3D (void*)arg[1];
if (f =3D=3D NULL)
- VG_(message)(Vg_DebugMsg, "VG_USERREQ__CLIENT_CALL0: func=3D%p\n", =
f);
+ VG_(message)(Vg_DebugMsg, "VG_USERREQ__CLIENT_CALL0: func=3D%p", f)=
;
else
SET_CLCALL_RETVAL(tid, f ( tid ), (Addr)f);
break;
@@ -952,7 +952,7 @@
case VG_USERREQ__CLIENT_CALL1: {
UWord (*f)(ThreadId, UWord) =3D (void*)arg[1];
if (f =3D=3D NULL)
- VG_(message)(Vg_DebugMsg, "VG_USERREQ__CLIENT_CALL1: func=3D%p\n", =
f);
+ VG_(message)(Vg_DebugMsg, "VG_USERREQ__CLIENT_CALL1: func=3D%p", f)=
;
else
SET_CLCALL_RETVAL(tid, f ( tid, arg[2] ), (Addr)f );
break;
@@ -960,7 +960,7 @@
case VG_USERREQ__CLIENT_CALL2: {
UWord (*f)(ThreadId, UWord, UWord) =3D (void*)arg[1];
if (f =3D=3D NULL)
- VG_(message)(Vg_DebugMsg, "VG_USERREQ__CLIENT_CALL2: func=3D%p\n", =
f);
+ VG_(message)(Vg_DebugMsg, "VG_USERREQ__CLIENT_CALL2: func=3D%p", f)=
;
else
SET_CLCALL_RETVAL(tid, f ( tid, arg[2], arg[3] ), (Addr)f );
break;
@@ -968,7 +968,7 @@
case VG_USERREQ__CLIENT_CALL3: {
UWord (*f)(ThreadId, UWord, UWord, UWord) =3D (void*)arg[1];
if (f =3D=3D NULL)
- VG_(message)(Vg_DebugMsg, "VG_USERREQ__CLIENT_CALL3: func=3D%p\n", =
f);
+ VG_(message)(Vg_DebugMsg, "VG_USERREQ__CLIENT_CALL3: func=3D%p", f)=
;
else
SET_CLCALL_RETVAL(tid, f ( tid, arg[2], arg[3], arg[4] ), (Addr)f )=
;
break;
@@ -1076,7 +1076,7 @@
if (c2 =3D=3D 0) c2 =3D '_';
VG_(message)(Vg_UserMsg, "Warning:\n"
" unhandled client request: 0x%x (%c%c+0x%x). Perha=
ps\n"=20
- " VG_(needs).client_requests should be set?\n",
+ " VG_(needs).client_requests should be set?",
arg[0], c1, c2, arg[0] & 0xffff);
whined =3D True;
}
|