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.
77
1999
/
12
/
31
15
:
40
:
14
grubba
Exp $
+
* $Id: program.h,v 1.
78
2000
/
01
/
02
23
:
41
:
06
mast
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:316:
void use_module(struct svalue *s); void unuse_modules(INT32 howmany); struct node_s *find_module_identifier(struct pike_string *ident); struct program *parent_compilation(int level); struct program *id_to_program(INT32 id); void optimize_program(struct program *p); int program_function_index_compare(const void *a,const void *b); void fixate_program(void); struct program *low_allocate_program(void); void low_start_new_program(struct program *p,
-
struct pike_string *name
,
-
int flags
);
+
struct pike_string *name);
void debug_start_new_program(PROGRAM_LINE_ARGS); void really_free_program(struct program *p); void dump_program_desc(struct program *p); int sizeof_variable(int run_time_type); void check_program(struct program *p); struct program *end_first_pass(int finish); struct program *debug_end_program(void); SIZE_T low_add_storage(SIZE_T size, SIZE_T alignment, int modulo_orig); void set_init_callback(void (*init)(struct object *)); void set_exit_callback(void (*exit)(struct object *));