From: Bart Van Assche Date: Thu, 2 Sep 2010 14:41:05 +0000 (+0000) Subject: Made declaration and definition of VG_(thread_get_stack_size)(ThreadId) X-Git-Tag: svn/VALGRIND_3_6_0~132 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=22ddb6a3198441a7a8c1cc973f0ee11cb239a867;p=thirdparty%2Fvalgrind.git Made declaration and definition of VG_(thread_get_stack_size)(ThreadId) consistent. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11325 --- diff --git a/include/pub_tool_machine.h b/include/pub_tool_machine.h index 5d89c708d1..5b34c4886d 100644 --- a/include/pub_tool_machine.h +++ b/include/pub_tool_machine.h @@ -146,7 +146,7 @@ extern Bool VG_(thread_stack_next) ( /*MOD*/ThreadId* tid, extern Addr VG_(thread_get_stack_max) ( ThreadId tid ); // Returns how many bytes have been allocated for the stack of the given thread -extern Addr VG_(thread_get_stack_size) ( ThreadId tid ); +extern SizeT VG_(thread_get_stack_size) ( ThreadId tid ); // Returns the bottommost address of the alternate signal stack. // See also the man page of sigaltstack().