unwind: give all exported functions "unwind_" prefix

* unwind.c (init_unwind_addr_space): Rename to unwind_init.
(init_libunwind_ui): Rename to unwind_tcb_init.
(free_libunwind_ui): Rename to unwind_tcb_fin.
(delete_mmap_cache): Rename to unwind_cache_invalidate.
(print_stacktrace): Rename to unwind_print_stacktrace.
* defs.h: Update prototypes.
* mem.c: All callers updated.
* process.c: Likewise.
* strace.c: Likewise.
* syscall.c: Likewise.

Signed-off-by: Masatake YAMATO <yamato@redhat.com>
This commit is contained in:
Masatake YAMATO
2014-04-16 15:33:02 +09:00
committed by Dmitry V. Levin
parent 7721499fc7
commit 6141392856
6 changed files with 19 additions and 19 deletions

View File

@@ -802,7 +802,7 @@ sys_execve(struct tcb *tcp)
#ifdef USE_LIBUNWIND
else {
if (stack_trace_enabled)
delete_mmap_cache(tcp);
unwind_cache_invalidate(tcp);
}
#endif