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.
57
1999/09/
15
07
:
15
:
20
hubbe Exp $
+
* $Id: program.h,v 1.
58
1999/09/
16
20
:
30
:
36
hubbe 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:202:
/* */ #define PROGRAM_USES_PARENT 128 struct program { INT32 refs; #ifdef PIKE_SECURITY struct object *prot; #endif INT32 id; /* used to identify program in caches */
+
/* storage_needed - storage needed in object struct
+
* the first inherit[0].storage_offset bytes are not used and are
+
* subtracted when inheriting.
+
*/
INT32 storage_needed; /* storage needed in the object struct */ INT16 flags; /* PROGRAM_* */ unsigned INT8 alignment_needed; struct timeval timestamp; struct program *next; struct program *prev; void (*init)(struct object *); void (*exit)(struct object *);