0.6.7.22: removed CVS dollar-Header-dollar tags from sources
[sbcl.git] / src / runtime / arch.h
1 /*
2  * This software is part of the SBCL system. See the README file for
3  * more information.
4  *
5  * This software is derived from the CMU CL system, which was
6  * written at Carnegie Mellon University and released into the
7  * public domain. The software is in the public domain and is
8  * provided with absolutely no warranty. See the COPYING and CREDITS
9  * files for more information.
10  */
11
12 #ifndef __ARCH_H__
13 #define __ARCH_H__
14
15 #include "os.h"
16 #include "signal.h"
17
18 extern void arch_init(void);
19 extern void arch_skip_instruction(os_context_t*);
20 extern boolean arch_pseudo_atomic_atomic(os_context_t*);
21 extern void arch_set_pseudo_atomic_interrupted(os_context_t*);
22 extern os_vm_address_t arch_get_bad_addr(int, siginfo_t*, os_context_t*);
23 extern unsigned char *arch_internal_error_arguments(os_context_t*);
24 extern unsigned long arch_install_breakpoint(void *pc);
25 extern void arch_remove_breakpoint(void *pc, unsigned long orig_inst);
26 extern void arch_install_interrupt_handlers(void);
27 extern void arch_do_displaced_inst(os_context_t *context,
28                                    unsigned long orig_inst);
29 extern lispobj funcall0(lispobj function);
30 extern lispobj funcall1(lispobj function, lispobj arg0);
31 extern lispobj funcall2(lispobj function, lispobj arg0, lispobj arg1);
32 extern lispobj funcall3(lispobj function, lispobj arg0, lispobj arg1,
33                         lispobj arg2);
34
35 #endif /* __ARCH_H__ */