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.
116
2002/04/
15
15
:
53
:
02
grubba Exp $
+
* $Id: program.h,v 1.
117
2002/04/
18
09
:
21
:
58
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:243:
#define PROGRAM_USES_PARENT 128 /* Objects should not be destructed even when they only has weak * references left. */ #define PROGRAM_NO_WEAK_FREE 256 /* Objects should not be destructed by f_destruct(). */ #define PROGRAM_NO_EXPLICIT_DESTRUCT 512 /* Program is in an inconsistant state */
-
#define PROGRAM_AVOID_CHECK
512
+
#define PROGRAM_AVOID_CHECK
1024
struct program { INT32 refs; #ifdef PIKE_SECURITY struct object *prot; #endif INT32 id; /* used to identify program in caches */ INT32 parent_program_id;