pike.git
/
src
/
constants.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/constants.c:96:
struct pike_type *type, int flags, optimize_fun optimize, docode_fun docode) { struct callable *f=ba_alloc(&callable_allocator); #ifdef PIKE_DEBUG DOUBLELINK(first_callable, f); #endif INIT_PIKE_MEMOBJ(f, T_STRUCT_CALLABLE);
-
gc_init_marker(
&
f
->m
);
+
gc_init_marker(f);
f->function=fun; f->name=name; f->type=type; f->prog=Pike_compiler->new_program; f->flags=flags; f->docode=docode; f->optimize=optimize; f->internal_flags = global_callable_flags; #ifdef PIKE_DEBUG {