pike.git
/
src
/
program.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.h:1:
/*\ ||| This file is part of Pike. For copyright information see COPYRIGHT. ||| Pike is distributed under GPL, LGPL and MPL. See the file COPYING ||| for more information. \*/ /*
-
* $Id: program.h,v 1.
164
2002/09/11
14
:03:
50
marcus
Exp $
+
* $Id: program.h,v 1.
165
2002/09/11
16
:03:
32
mast
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:336:
{ struct object *parent; INT16 parent_identifier; }; struct program { PIKE_MEMORY_OBJECT_MEMBERS; /* Must be first */ INT32 id; /* used to identify program in caches */
-
INT32 parent_program_id;
+
/* storage_needed - storage needed in object struct * the first inherit[0].storage_offset bytes are not used and are * subtracted when inheriting. */ ptrdiff_t storage_needed; /* storage needed in the object struct */ ptrdiff_t xstorage; /* Non-inherited storage */ ptrdiff_t parent_info_storage; INT16 flags; /* PROGRAM_* */ unsigned INT8 alignment_needed;