diff options
Diffstat (limited to 'arch/um/include/os.h')
-rw-r--r-- | arch/um/include/os.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/arch/um/include/os.h b/arch/um/include/os.h index 69c0d4ad0e52..9428d34792ca 100644 --- a/arch/um/include/os.h +++ b/arch/um/include/os.h | |||
@@ -238,7 +238,7 @@ extern int raw(int fd); | |||
238 | extern void setup_machinename(char *machine_out); | 238 | extern void setup_machinename(char *machine_out); |
239 | extern void setup_hostinfo(char *buf, int len); | 239 | extern void setup_hostinfo(char *buf, int len); |
240 | extern int setjmp_wrapper(void (*proc)(void *, void *), ...); | 240 | extern int setjmp_wrapper(void (*proc)(void *, void *), ...); |
241 | extern void os_dump_core(void); | 241 | extern void os_dump_core(void) __attribute__ ((noreturn)); |
242 | 242 | ||
243 | /* time.c */ | 243 | /* time.c */ |
244 | extern void idle_sleep(unsigned long long nsecs); | 244 | extern void idle_sleep(unsigned long long nsecs); |
@@ -267,11 +267,9 @@ extern int protect(struct mm_id * mm_idp, unsigned long addr, | |||
267 | extern int is_skas_winch(int pid, int fd, void *data); | 267 | extern int is_skas_winch(int pid, int fd, void *data); |
268 | extern int start_userspace(unsigned long stub_stack); | 268 | extern int start_userspace(unsigned long stub_stack); |
269 | extern int copy_context_skas0(unsigned long stack, int pid); | 269 | extern int copy_context_skas0(unsigned long stack, int pid); |
270 | extern void save_registers(int pid, struct uml_pt_regs *regs); | ||
271 | extern void restore_registers(int pid, struct uml_pt_regs *regs); | ||
272 | extern void userspace(struct uml_pt_regs *regs); | 270 | extern void userspace(struct uml_pt_regs *regs); |
273 | extern void map_stub_pages(int fd, unsigned long code, | 271 | extern int map_stub_pages(int fd, unsigned long code, unsigned long data, |
274 | unsigned long data, unsigned long stack); | 272 | unsigned long stack); |
275 | extern void new_thread(void *stack, jmp_buf *buf, void (*handler)(void)); | 273 | extern void new_thread(void *stack, jmp_buf *buf, void (*handler)(void)); |
276 | extern void switch_threads(jmp_buf *me, jmp_buf *you); | 274 | extern void switch_threads(jmp_buf *me, jmp_buf *you); |
277 | extern int start_idle_thread(void *stack, jmp_buf *switch_buf); | 275 | extern int start_idle_thread(void *stack, jmp_buf *switch_buf); |