sigchain.h 215 B

1234567891011
  1. #ifndef SIGCHAIN_H
  2. #define SIGCHAIN_H
  3. typedef void (*sigchain_fun)(int);
  4. int sigchain_push(int sig, sigchain_fun f);
  5. int sigchain_pop(int sig);
  6. void sigchain_push_common(sigchain_fun f);
  7. #endif /* SIGCHAIN_H */