|
From: Dirk M. <mu...@kd...> - 2006-08-26 19:46:06
|
On Saturday, 26. August 2006 18:22, Bart Van Assche wrote:
> - Various small changes.
I assume you noticed anyway, but the new snapshot doesn't compile. Here's the
diff.
--- drd/drd_main.c.orig 2006-08-26 21:43:36.000000000 +0200
+++ drd/drd_main.c 2006-08-26 21:43:56.000000000 +0200
@@ -110,7 +110,7 @@
addr, size, VG_(get_running_tid)());
}
#endif
- sg = thread_get_segment(VG_(running_tid));
+ sg = thread_get_segment(VG_(get_running_tid));
bm_access_range(sg->bm, addr, size, eLoad);
}
@@ -124,7 +124,7 @@
addr, size, VG_(get_running_tid)());
}
#endif
- sg = thread_get_segment(VG_(running_tid));
+ sg = thread_get_segment(VG_(get_running_tid));
bm_access_range(sg->bm, addr, size, eStore);
}
Dirk
|