Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 735274
Collapse All | Expand All

(-)a/asmrun/startup.c (-1 / +1 lines)
Lines 44-50 Link Here
44
#endif
44
#endif
45
45
46
extern int caml_parser_trace;
46
extern int caml_parser_trace;
47
CAMLexport header_t caml_atom_table[256];
47
CAMLextern header_t caml_atom_table[256];
48
char * caml_code_area_start, * caml_code_area_end;
48
char * caml_code_area_start, * caml_code_area_end;
49
49
50
/* Initialize the atom table and the static data and code area limits. */
50
/* Initialize the atom table and the static data and code area limits. */
(-)a/byterun/backtrace.c (-1 / +1 lines)
Lines 28-34 Link Here
28
#include "caml/fail.h"
28
#include "caml/fail.h"
29
29
30
/* The table of debug information fragments */
30
/* The table of debug information fragments */
31
struct ext_table caml_debug_info;
31
extern struct ext_table caml_debug_info;
32
32
33
CAMLexport int32_t caml_backtrace_active = 0;
33
CAMLexport int32_t caml_backtrace_active = 0;
34
CAMLexport int32_t caml_backtrace_pos = 0;
34
CAMLexport int32_t caml_backtrace_pos = 0;
(-)a/byterun/caml/intext.h (-1 / +1 lines)
Lines 196-202 Link Here
196
196
197
CAMLextern struct code_fragment * caml_extern_find_code(char *addr);
197
CAMLextern struct code_fragment * caml_extern_find_code(char *addr);
198
198
199
struct ext_table caml_code_fragments_table;
199
extern struct ext_table caml_code_fragments_table;
200
200
201
#endif /* CAML_INTERNALS */
201
#endif /* CAML_INTERNALS */
202
202
(-)a/byterun/caml/major_gc.h (-3 / +3 lines)
Lines 64-72 Link Here
64
extern char *caml_gc_sweep_hp;
64
extern char *caml_gc_sweep_hp;
65
65
66
extern int caml_major_window;
66
extern int caml_major_window;
67
double caml_major_ring[Max_major_window];
67
extern double caml_major_ring[Max_major_window];
68
int caml_major_ring_index;
68
extern int caml_major_ring_index;
69
double caml_major_work_credit;
69
extern double caml_major_work_credit;
70
extern double caml_gc_clock;
70
extern double caml_gc_clock;
71
71
72
/* [caml_major_gc_hook] is called just between the end of the mark
72
/* [caml_major_gc_hook] is called just between the end of the mark
(-)a/byterun/meta.c (+2 lines)
Lines 32-37 Link Here
32
#include "caml/prims.h"
32
#include "caml/prims.h"
33
#include "caml/stacks.h"
33
#include "caml/stacks.h"
34
34
35
struct ext_table caml_code_fragments_table;
36
35
#ifndef NATIVE_CODE
37
#ifndef NATIVE_CODE
36
38
37
CAMLprim value caml_get_global_data(value unit)
39
CAMLprim value caml_get_global_data(value unit)

Return to bug 735274