sysdep.h 956 B

12345678910111213141516171819202122232425
  1. /**********************************************************************
  2. sysdep.h
  3. Copyright (C) 1999 Lars Brinkhoff.
  4. Copyright (C) 2001 Jeff Dike (jdike@karaya.com)
  5. See the file COPYING for licensing terms and conditions.
  6. **********************************************************************/
  7. extern int get_syscall(pid_t pid, long *arg1, long *arg2, long *arg3,
  8. long *arg4, long *arg5);
  9. extern void syscall_cancel (pid_t pid, long result);
  10. extern void syscall_set_result (pid_t pid, long result);
  11. extern void syscall_continue (pid_t pid);
  12. extern int syscall_pause(pid_t pid);
  13. /*
  14. * Overrides for Emacs so that we follow Linus's tabbing style.
  15. * Emacs will notice this stuff at the end of the file and automatically
  16. * adjust the settings for this buffer only. This must remain at the end
  17. * of the file.
  18. * ---------------------------------------------------------------------------
  19. * Local variables:
  20. * c-file-style: "linux"
  21. * End:
  22. */