0.8alpha.0.13:
[sbcl.git] / src / runtime / hppa-linux-os.c
1 /*
2  * This is the HPPA Linux incarnation of arch-dependent OS-dependent
3  * routines. See also "linux-os.c".
4  */
5
6 /*
7  * This software is part of the SBCL system. See the README file for
8  * more information.
9  *
10  * This software is derived from the CMU CL system, which was
11  * written at Carnegie Mellon University and released into the
12  * public domain. The software is in the public domain and is
13  * provided with absolutely no warranty. See the COPYING and CREDITS
14  * files for more information.
15  */
16
17 #include <stdio.h>
18 #include <sys/param.h>
19 #include <sys/file.h>
20 #include "./signal.h"
21 #include "os.h"
22 #include "arch.h"
23 #include "globals.h"
24 #include "interrupt.h"
25 #include "interr.h"
26 #include "lispregs.h"
27 #include "sbcl.h"
28 #include <sys/socket.h>
29 #include <sys/utsname.h>
30
31 #include <sys/types.h>
32 #include <signal.h>
33 #include <sys/time.h>
34 #include <sys/stat.h>
35 #include <unistd.h>
36
37 #include "validate.h"
38 size_t os_vm_page_size;
39
40 #ifdef LISP_FEATURE_SB_THREAD
41 #error "Define threading support functions"
42 #else
43 struct thread *arch_os_get_current_thread() {
44     return all_threads;
45 }
46 int arch_os_thread_init(struct thread *thread) {
47     return 1;                  /* success */
48 }
49 int arch_os_thread_cleanup(struct thread *thread) {
50     return 1;                  /* success */
51 }
52 #endif
53
54 os_context_register_t   *
55 os_context_register_addr(os_context_t *context, int offset)
56 {
57     if (offset == 0) {
58         /* KLUDGE: I'm not sure, but it's possible that Linux puts the
59            contents of the Processor Status Word in the (wired-zero)
60            slot in the mcontext. In any case, the following is
61            unlikely to do any harm: */
62         static int zero;
63         zero = 0;
64         return &zero;
65     } else {
66         return &(((struct sigcontext *) &(context->uc_mcontext))->sc_gr[offset]);
67     }
68 }
69
70 os_context_register_t *
71 os_context_pc_addr(os_context_t *context)
72 {
73     /* Why do I get all the silly ports? -- CSR, 2002-08-11 */
74     return &(((struct sigcontext *) &(context->uc_mcontext))->sc_iaoq[0]);
75 }
76
77 os_context_register_t *
78 os_context_npc_addr(os_context_t *context)
79 {
80     return &(((struct sigcontext *) &(context->uc_mcontext))->sc_iaoq[1]);
81 }
82
83 sigset_t *
84 os_context_sigmask_addr(os_context_t *context)
85 {
86     return &(context->uc_sigmask);
87 }
88
89 void 
90 os_restore_fp_control(os_context_t *context)
91 {
92     /* FIXME: Probably do something. */
93 }
94
95 void 
96 os_flush_icache(os_vm_address_t address, os_vm_size_t length)
97 {
98     /* FIXME: Maybe this is OK. */
99     sanctify_for_execution(address,length);
100 }