summaryrefslogtreecommitdiff
path: root/libhurd-mm/map.h
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@gnu.org>2008-12-16 19:51:10 +0100
committerNeal H. Walfield <neal@gnu.org>2008-12-16 20:01:35 +0100
commitcd09ca0b681ca964dcee2c5b72311a33ca6f1cb1 (patch)
tree9a94d60155ba9f8400ae15fcbf88376a03030358 /libhurd-mm/map.h
parent465d6fa4fcf836482088e5e263fc26da03feff44 (diff)
Replace L4 types and functions with standard types or viengoos
functions. hurd/ 2008-12-16 Neal H. Walfield <neal@gnu.org> * addr-trans.h: Don't include <l4/types.h>. Include <stdint.h> and <hurd/math.h>. (struct cap_addr_trans): Replace l4 types with standard types. (CAP_ADDR_TRANS_GUARD): Likewise. (CAP_ADDR_TRANS_SET_GUARD_SUBPAGE): Use vg_msb, not l4_msb. (CAP_ADDR_TRANS_VALID): Replace l4 types with standard types. Use vg_msb, not l4_msb. * t-addr.c (main): Replace use of l4_msb64 with vg_msg64 and l4_lsb64 with vg_lsg64. * types.h: Don't include <l4/types.h>. libhurd-mm/ 2008-12-16 Neal H. Walfield <neal@gnu.org> * anonymous.c (anonymous_pager_alloc): Replace use of l4_msb with vg_msb. * as-build.c (as_build): Replace use of l4_msb64 with vg_msb64. * as-dump.c (print_nr): Replace use of l4_int64_t with int64_t. * as-lookup.c (as_lookup_rel_internal): Replace use of l4_word_t with uintptr_t and l4_uint64_t with uint64_t. * as.h (as_alloc): Replace use of l4_uint64_t with uint64_t. (as_alloc_at): Likewise. (as_free): Likewise. (AS_CHECK_SHADOW): Replace use of l4_word_t with uintptr_t. (as_walk): Likewise. * as.c (struct region): Replace use of l4_uint64_t with uint64_t. (free_space_split): Likewise. (as_alloc): Likewise. (as_alloc_at): Likewise. (as_free): Likewise. (as_init): Likewise. (as_alloc_slow): Replace use of l4_word_t with uintptr_t. (as_init): Likewise. (as_walk): Likewise. (as_alloc): Replace use of l4_lsb64 with vg_lsb64. (as_init): Likewise.
Diffstat (limited to 'libhurd-mm/map.h')
-rw-r--r--libhurd-mm/map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhurd-mm/map.h b/libhurd-mm/map.h
index febc3ea..382a6e9 100644
--- a/libhurd-mm/map.h
+++ b/libhurd-mm/map.h
@@ -206,7 +206,7 @@ map_find (struct region region)
struct map *map = hurd_btree_map_find (&maps, &region);
if (! map)
{
- debug (3, "No map covers %x-%x",
+ debug (5, "No map covers %x-%x",
region.start, region.start + region.length - 1);
return NULL;
}