pike.git
/
src
/
builtin.cmod
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/builtin.cmod:1:
/* -*- c -*-
-
* $Id: builtin.cmod,v 1.
38
2001/06/19 21:
34
:
28
grubba Exp $
+
* $Id: builtin.cmod,v 1.
39
2001/06/19 21:
41
:
01
grubba Exp $
*/ #include "global.h" #include "interpret.h" #include "svalue.h" #include "opcodes.h" #include "pike_macros.h" #include "object.h" #include "program.h" #include "array.h"
pike.git/src/builtin.cmod:636:
/* * Backtrace handling. */ /*! @class BacktraceFrame */ PIKECLASS backtrace_frame {
-
PIKEVAR
function
fun;
+
PIKEVAR
mixed
fun;
PIKEVAR array args; CVAR struct program *prog; CVAR unsigned char *pc; CVAR struct pike_string *filename; CVAR INT_TYPE lineno; INIT { THIS->fun.type = T_INT;
-
+
THIS->fun.u.integer = 0;
THIS->prog = NULL; THIS->pc = 0; THIS->lineno = 0; THIS->args = NULL; THIS->filename = NULL; } EXIT { if (THIS->prog) {