pike.git/
src/
interpret.c
Branch:
Tag:
Non-build tags
All tags
No tags
2017-08-10
2017-08-10 21:24:04 by Martin Nilsson <nilsson@fastmail.com>
24f4ddc3cc2b7c7ef8e5f498fd6cf518954c9ba1 (
5
lines) (+
5
/-
0
)
[
Show
|
Annotate
]
Branch:
8.1
Possible fix to gdb_backtrace when compiling without threads.
3345:
if(of) { tmp = of->locals - f->locals; } else {
+
#ifdef PIKE_THREADS
tmp = ts->state.stack_pointer - f->locals;
-
+
#else
+
tmp = f->num_args; /* FIXME */
+
#endif
} args = (INT32)tmp; args = MAXIMUM(MINIMUM(args, f->num_args),0);