pike.git
/
src
/
program.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.c: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.c,v 1.
553
2004/01/
19
12
:
28
:
30
grubba
Exp $
+
|| $Id: program.c,v 1.
554
2004/01/
22
23
:
17:
28
nilsson
Exp $
*/ #include "global.h"
-
RCSID("$Id: program.c,v 1.
553
2004/01/
19
12
:
28
:
30
grubba
Exp $");
+
RCSID("$Id: program.c,v 1.
554
2004/01/
22
23
:
17:
28
nilsson
Exp $");
#include "program.h" #include "object.h" #include "dynamic_buffer.h" #include "pike_types.h" #include "stralloc.h" #include "las.h" #include "language.h" #include "lex.h" #include "pike_macros.h" #include "fsort.h"
pike.git/src/program.c:7402:
ptrdiff_t offset; unsigned INT32 hval; if(!o) return -1; oid=o->id; pid=p->id; hval=oid*9248339 + pid; hval%=GET_STORAGE_CACHE_SIZE; #ifdef PIKE_DEBUG if(hval>GET_STORAGE_CACHE_SIZE)
-
Pike_fatal("hval>GET_STORAGE_CACHE_
SIZE
");
+
Pike_fatal("hval>GET_STORAGE_CACHE_
SIZE\n
");
#endif if(get_storage_cache[hval].oid == oid && get_storage_cache[hval].pid == pid) { offset=get_storage_cache[hval].offset; }else{ INT32 e; offset=-1; for(e=0;e<o->num_inherits;e++) {