mode-skas.h 891 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
  3. * Licensed under the GPL
  4. */
  5. #ifndef __MODE_SKAS_H__
  6. #define __MODE_SKAS_H__
  7. #include <sysdep/ptrace.h>
  8. extern unsigned long exec_regs[];
  9. extern unsigned long exec_fp_regs[];
  10. extern unsigned long exec_fpx_regs[];
  11. extern int have_fpx_regs;
  12. extern void sig_handler_common_skas(int sig, void *sc_ptr);
  13. extern void halt_skas(void);
  14. extern void reboot_skas(void);
  15. extern void kill_off_processes_skas(void);
  16. extern int is_skas_winch(int pid, int fd, void *data);
  17. #endif
  18. /*
  19. * Overrides for Emacs so that we follow Linus's tabbing style.
  20. * Emacs will notice this stuff at the end of the file and automatically
  21. * adjust the settings for this buffer only. This must remain at the end
  22. * of the file.
  23. * ---------------------------------------------------------------------------
  24. * Local variables:
  25. * c-file-style: "linux"
  26. * End:
  27. */