|
From: <sv...@va...> - 2005-04-04 02:48:37
|
Author: njn
Date: 2005-04-04 03:48:32 +0100 (Mon, 04 Apr 2005)
New Revision: 3517
Modified:
trunk/coregrind/vg_scheduler.c
Log:
64-bit cleanness -- use UWord instead of UInt.
Modified: trunk/coregrind/vg_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
--- trunk/coregrind/vg_scheduler.c 2005-04-04 02:41:42 UTC (rev 3516)
+++ trunk/coregrind/vg_scheduler.c 2005-04-04 02:48:32 UTC (rev 3517)
@@ -628,7 +628,7 @@
=20
/* Initial thread's stack is the original process stack */
VG_(threads)[tid_main].client_stack_highest_word=20
- =3D VG_(clstk_end) - sizeof(=
UInt);
+ =3D VG_(clstk_end) - sizeof(=
UWord);
VG_(threads)[tid_main].client_stack_szB =3D VG_(client_rlimit_stack)=
.rlim_cur;
=20
VG_(atfork)(NULL, NULL, sched_fork_cleanup);
|