From: Nicholas Nethercote Date: Sat, 12 Mar 2005 05:04:30 +0000 (+0000) Subject: Remove dead declarations. X-Git-Tag: svn/VALGRIND_3_0_0~1030 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d9d1e37683f2fec80f39a056655855b80a39b46b;p=thirdparty%2Fvalgrind.git Remove dead declarations. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3288 --- diff --git a/coregrind/core.h b/coregrind/core.h index 59a509d3f6..47e3c55f72 100644 --- a/coregrind/core.h +++ b/coregrind/core.h @@ -761,11 +761,6 @@ extern void VG_(resume_scheduler) ( ThreadId tid ); /* If true, a fault is Valgrind-internal (ie, a bug) */ extern Bool VG_(my_fault); -/* The red-zone size which we put at the bottom (highest address) of - thread stacks, for paranoia reasons. This can be arbitrary, and - doesn't really need to be set at compile time. */ -#define VG_AR_CLIENT_STACKBASE_REDZONE_SZB 16 - // Write a value to a client's thread register, and shadow (if necessary). // Note that there are some further similar macros in the arch- and // platform-specific parts; these ones are the totally generic ones. @@ -841,8 +836,6 @@ extern void VG_(synth_fault_mapping)(ThreadId tid, Addr addr); extern void VG_(synth_fault_perms) (ThreadId tid, Addr addr); extern void VG_(synth_sigill) (ThreadId tid, Addr addr); -extern void VG_(get_sigstack_bounds)( Addr* low, Addr* high ); - /* Extend the stack to cover addr, if possible */ extern Bool VG_(extend_stack)(Addr addr, UInt maxsize);