|
From: Bart V. A. <bar...@gm...> - 2008-12-01 12:39:14
|
On Mon, Dec 1, 2008 at 1:23 PM, Felix Schmidt <fel...@we...> wrote: > Is there any possibility to call the framework? > Or can you explain me, how can I use the /proc/<pid>/maps files to differ a stack and a > heap address Ah, you need this information inside a Valgrind tool ? In that case, you probably need one or more of the following functions: VG_(thread_stack_reset_iter)(...) VG_(thread_stack_next)(...) VG_(thread_get_stack_max)(...) VG_(thread_get_stack_size)(...) See also pub_tool_threadstate.h and pub_tool_machine.h. Bart. |