signal.h 746 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
  3. * Licensed under the GPL
  4. */
  5. #ifndef __UM_SIGNAL_H
  6. #define __UM_SIGNAL_H
  7. /* Need to kill the do_signal() declaration in the i386 signal.h */
  8. #define do_signal do_signal_renamed
  9. #include "asm/arch/signal.h"
  10. #undef do_signal
  11. #undef ptrace_signal_deliver
  12. #define ptrace_signal_deliver(regs, cookie) do {} while(0)
  13. #endif
  14. /*
  15. * Overrides for Emacs so that we follow Linus's tabbing style.
  16. * Emacs will notice this stuff at the end of the file and automatically
  17. * adjust the settings for this buffer only. This must remain at the end
  18. * of the file.
  19. * ---------------------------------------------------------------------------
  20. * Local variables:
  21. * c-file-style: "linux"
  22. * End:
  23. */