process.h 298 B

1234567891011121314
  1. /*
  2. * Copyright (C) 2000 - 2008 Jeff Dike (jdike@{addtoit,linux.intel}.com)
  3. * Licensed under the GPL
  4. */
  5. #ifndef __PROCESS_H__
  6. #define __PROCESS_H__
  7. #include <signal.h>
  8. extern void sig_handler(int sig, struct sigcontext *sc);
  9. extern void alarm_handler(int sig, struct sigcontext *sc);
  10. #endif