From edf8e2af1453ce56c72b2f25a745e3734177a05d Mon Sep 17 00:00:00 2001 From: Mika Westerberg Date: Tue, 7 Apr 2009 09:57:11 +0300 Subject: linux-user: implemented ELF coredump support for ARM target When target process is killed with signal (such signal that should dump core) a coredump file is created. This file is similar than coredump generated by Linux (there are few exceptions though). Riku Voipio: added support for rlimit Signed-off-by: Mika Westerberg Signed-off-by: Riku Voipio --- cpu-all.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cpu-all.h') diff --git a/cpu-all.h b/cpu-all.h index dc9b034cb..8f078c415 100644 --- a/cpu-all.h +++ b/cpu-all.h @@ -735,6 +735,8 @@ extern unsigned long qemu_host_page_mask; #define PAGE_RESERVED 0x0020 void page_dump(FILE *f); +int walk_memory_regions(void *, + int (*fn)(void *, unsigned long, unsigned long, unsigned long)); int page_get_flags(target_ulong address); void page_set_flags(target_ulong start, target_ulong end, int flags); int page_check_range(target_ulong start, target_ulong len, int flags); -- cgit v1.2.3-65-gdbad