|
From: Nicholas N. <nj...@ca...> - 2004-09-13 11:05:23
|
CVS commit by nethercote: Remove suppression files that have never been used, and don't get included in "make dist". M +6 -1 coregrind/core.h 1.26 R linux22.supp 1.8 R linux24.supp 1.7 --- valgrind/coregrind/core.h #1.25:1.26 @@ -1489,11 +1489,13 @@ extern UInt VG_(baseBlock)[VG_BASEBLOCK_ // --------------------------------------------------------------------- -/* For setting up the baseBlock */ +// For setting up the baseBlock extern void VGA_(init_low_baseBlock) ( Addr client_eip, Addr esp_at_startup ); extern void VGA_(init_high_baseBlock) ( Addr client_eip, Addr esp_at_startup ); +// Register state moving extern void VGA_(load_state) ( arch_thread_t*, ThreadId tid ); extern void VGA_(save_state) ( arch_thread_t*, ThreadId tid ); +// Thread stuff extern void VGA_(clear_thread) ( arch_thread_t* ); extern void VGA_(init_thread) ( arch_thread_t* ); @@ -1501,9 +1503,12 @@ extern void VGA_(cleanup_thread) ( arch_ extern void VGA_(setup_child) ( arch_thread_t*, arch_thread_t* ); +// Symtab stuff extern UInt* VGA_(reg_addr_from_BB) ( Int reg ); extern UInt* VGA_(reg_addr_from_tst) ( Int reg, arch_thread_t* ); +// Pointercheck extern Bool VGA_(setup_pointercheck) ( void ); +// For attaching the debugger extern Int VGA_(ptrace_setregs_from_BB) ( Int pid ); extern Int VGA_(ptrace_setregs_from_tst) ( Int pid, arch_thread_t* arch ); |