|
From: Dirk M. <mu...@kd...> - 2003-11-27 09:08:21
|
CVS commit by mueller:
reverting last commit, which broke all of valgrind.
M +4 -3 vg_proxylwp.c 1.8
--- valgrind/coregrind/vg_proxylwp.c #1.7:1.8
@@ -895,6 +895,4 @@ static Int proxy_clone(ProxyLWP *proxy)
Int ret = -1;
- proxy->lwp = -1;
-
if (have_settid != 0) {
ret = VG_(clone)(proxylwp,
@@ -921,9 +919,11 @@ static Int proxy_clone(ProxyLWP *proxy)
}
}
+ else
+ have_settid = 1;
}
if (ret < 0) {
vg_assert(have_settid == 0);
- vg_assert(proxy->lwp == -1);
+ vg_assert(proxy->lwp == 0);
ret = VG_(clone)(proxylwp,
|