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.
85
2000/
03
/
30
08:
43
:
07
hubbe Exp $
+
* $Id: program.h,v 1.
86
2000/
04
/
08
02
:
01
:
09
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:255:
INT16 flags; /* PROGRAM_* */ unsigned INT8 alignment_needed; struct timeval timestamp; struct program *next; struct program *prev; void (*init)(struct object *); void (*exit)(struct object *); void (*gc_marked)(struct object *);
-
void (*gc_check)(struct object *);
+
void (*gc_check
_func
)(struct object *);
#ifdef PIKE_DEBUG unsigned INT32 checksum; #endif #ifdef PROFILING unsigned INT32 num_clones; #endif /* PROFILING */ SIZE_T total_size; #define FOO(NUMTYPE,TYPE,NAME) TYPE * NAME ;