-0e482bef69d73b9381dbc543e200a1fe57275e81
+2ce291eaee427799bfcde256929dab89e0ab61eb
The first line of this file holds the git revision number of the last
merge done from the gofrontend repository.
runtime_memclr (&c, sizeof c);
c.index = index;
+ runtime_xadd (&__go_runtime_in_callers, 1);
state = __go_get_backtrace_state ();
+ runtime_xadd (&__go_runtime_in_callers, -1);
backtrace_pcinfo (state, pc, callback, error_callback, &c);
*fn = c.fn;
*file = c.file;
static _Bool
__go_symbol_value (uintptr pc, uintptr *val)
{
+ struct backtrace_state *state;
+
*val = 0;
- backtrace_syminfo (__go_get_backtrace_state (), pc, syminfo_callback,
+ runtime_xadd (&__go_runtime_in_callers, 1);
+ state = __go_get_backtrace_state ();
+ runtime_xadd (&__go_runtime_in_callers, -1);
+ backtrace_syminfo (state, pc, syminfo_callback,
error_callback, val);
return *val != 0;
}
data.index = 0;
data.max = m;
data.keep_thunks = keep_thunks;
- state = __go_get_backtrace_state ();
runtime_xadd (&__go_runtime_in_callers, 1);
+ state = __go_get_backtrace_state ();
backtrace_full (state, 0, callback, error_callback, &data);
runtime_xadd (&__go_runtime_in_callers, -1);