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.
260
2008/
10
/
06
17
:
00
:
00
mast
Exp $
+
|| $Id: program.h,v 1.
261
2008/
12
/
13
08
:
05
:
24
nilsson
Exp $
*/ #ifndef PROGRAM_H #define PROGRAM_H #include "global.h" #include "pike_macros.h" #include "pike_error.h" #include "svalue.h" #include "dmalloc.h"
pike.git/src/program.h:615:
INT16 lfuns[NUM_LFUNS]; #ifdef WITH_FACETS /* Facet related stuff */ INT16 facet_class; /* PROGRAM_IS_X_CLASS (X=FACET/PRODUCT) */ INT32 facet_index; /* Index to the facet this facet class belongs to */ struct object *facet_group; #endif };
-
#
if
PIKE_DEBUG
+
#
ifdef
PIKE_DEBUG
static INLINE int CHECK_IDREF_RANGE (int x, const struct program *p) { if (x < 0 || x >= p->num_identifier_references) debug_fatal ("Identifier reference index %d out of range 0..%d\n", x, p->num_identifier_references - 1); return x; } #else #define CHECK_IDREF_RANGE(X, P) (X) #endif