-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathbe_rterror.h
48 lines (41 loc) · 1.26 KB
/
be_rterror.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#ifndef BE_RTERROR_H_
#define BE_RTERROR_H_
#include <stdint.h>
void RTFatalType(intptr_t *pc)
#ifdef __unix
__attribute__ ((noreturn))
#endif
;
extern int traced_lines;
extern int *TraceLineBuff; /* place to store traced lines */
extern int TraceLineSize; /* size of buffer */
extern int TraceLineNext; /* place to put next line */
extern int color_trace; /* display trace screen in multiple colors */
extern int file_trace; /* log statements to ctrace.out */
extern int trace_enabled; /* flag to disable tracing */
extern char *type_error_msg; /* changeable message */
void InitTraceWindow();
void InitDebug();
void GetViewPort(struct EuViewPort *vp);
void SubsAtomAss();
void SubsNotAtom();
void EraseSymbol(symtab_ptr sym);
void ErasePrivates(symtab_ptr proc_ptr);
void DisplayVar(symtab_ptr s_ptr, int user_requested);
void DebugScreen();
void UpdateGlobals();
void ShowDebug();
object_ptr BiggerStack();
void atom_condition();
void MainScreen();
void RangeReading(object subs, int len);
void BadSubscript(object subs, int length);
void NoValue(symtab_ptr s);
void CleanUpError_va(char *msg, symtab_ptr s_ptr, va_list ap)
#if defined(__unix) || defined(EMINGW)
__attribute__ ((noreturn))
#else
#pragma aux CleanUpError_va aborts;
#endif
;
#endif