pike.git
/
src
/
program.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.h:1:
/*\ ||| This file a part of Pike, and is copyright by Fredrik Hubinette ||| Pike is distributed as GPL (General Public License) ||| See the files COPYING and DISCLAIMER for more information. \*/ /*
-
* $Id: program.h,v 1.
115
2002/
02
/
06
17
:
26
:
15
grubba Exp $
+
* $Id: program.h,v 1.
116
2002/
04
/
15
15
:
53
:
02
grubba Exp $
*/ #ifndef PROGRAM_H #define PROGRAM_H #include <stdarg.h> #include "global.h" #include "pike_types.h" #include "pike_macros.h" #include "svalue.h" #include "time_stuff.h"
pike.git/src/program.h:193:
unsigned INT16 identifier_offset; INT16 id_flags; /* static, private etc.. */ }; struct inherit { INT16 inherit_level; INT16 identifier_level; INT16 parent_identifier; INT16 parent_offset;
+
size_t identifier_ref_offset;
ptrdiff_t storage_offset; struct object *parent; struct program *prog; struct pike_string *name; }; struct pike_trampoline { struct pike_frame *frame; INT32 func;