|
From: <sv...@va...> - 2005-05-14 23:10:41
|
Author: njn
Date: 2005-05-15 00:10:37 +0100 (Sun, 15 May 2005)
New Revision: 3713
Modified:
trunk/coregrind/vg_scheduler.c
Log:
Remove dead function.
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-05-14 21:51:49 UTC (rev 3712)
+++ trunk/coregrind/vg_scheduler.c 2005-05-14 23:10:37 UTC (rev 3713)
@@ -130,16 +130,6 @@
}
=20
=20
-__inline__
-static Bool is_valid_or_empty_tid ( ThreadId tid )
-{
- /* tid is unsigned, hence no < 0 test. */
- if (tid =3D=3D 0) return False;
- if (tid >=3D VG_N_THREADS) return False;
- return True;
-}
-
-
/* For constructing error messages only: try and identify a thread
whose stack satisfies the predicate p, or return VG_INVALID_THREADID
if none do.
|