frame_kern.h 455 B

12345678910111213141516171819
  1. /*
  2. * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
  3. * Licensed under the GPL
  4. */
  5. #ifndef __FRAME_KERN_H_
  6. #define __FRAME_KERN_H_
  7. extern int setup_signal_stack_sc(unsigned long stack_top, int sig,
  8. struct k_sigaction *ka,
  9. struct pt_regs *regs,
  10. sigset_t *mask);
  11. extern int setup_signal_stack_si(unsigned long stack_top, int sig,
  12. struct k_sigaction *ka,
  13. struct pt_regs *regs, siginfo_t *info,
  14. sigset_t *mask);
  15. #endif