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.
37
2001/06/19
17
:
41
:
35
grubba Exp $
+
* $Id: builtin.cmod,v 1.
38
2001/06/19
21
:
34
:
28
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 {
-
CVAR
struct
svalue
fun;
+
PIKEVAR
function
fun;
+
PIKEVAR array args;
CVAR struct program *prog; CVAR unsigned char *pc;
-
CVAR INT_TYPE lineno;
-
CVAR struct array *args;
+
CVAR struct pike_string *filename;
-
+
CVAR INT_TYPE lineno;
INIT { THIS->fun.type = T_INT; THIS->prog = NULL; THIS->pc = 0; THIS->lineno = 0; THIS->args = NULL; THIS->filename = NULL; }