Changed return type of some of the bitmap functions from UWord to Bool.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8030 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/exp-drd/pub_drd_bitmap.h b/exp-drd/pub_drd_bitmap.h
index 32ac74b..baa9934 100644
--- a/exp-drd/pub_drd_bitmap.h
+++ b/exp-drd/pub_drd_bitmap.h
@@ -75,10 +75,10 @@
const Addr a1, const Addr a2);
Bool bm_has_any_store(const struct bitmap* const bm,
const Addr a1, const Addr a2);
-UWord bm_has_any_access(const struct bitmap* const bm,
- const Addr a1, const Addr a2);
-UWord bm_has_1(const struct bitmap* const bm,
- const Addr address, const BmAccessTypeT access_type);
+Bool bm_has_any_access(const struct bitmap* const bm,
+ const Addr a1, const Addr a2);
+Bool bm_has_1(const struct bitmap* const bm,
+ const Addr address, const BmAccessTypeT access_type);
void bm_clear(const struct bitmap* const bm,
const Addr a1, const Addr a2);
void bm_clear_load(const struct bitmap* const bm,