signal.h 483 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (C) 2019 Arm Limited
  4. * Original author: Dave Martin <[email protected]>
  5. */
  6. #ifndef SIGNAL_H
  7. #define SIGNAL_H
  8. #include <linux/signal.h>
  9. #include "system.h"
  10. typedef __sighandler_t sighandler_t;
  11. int sigemptyset(sigset_t *s);
  12. int sigaddset(sigset_t *s, int n);
  13. int sigaction(int n, struct sigaction *sa, const struct sigaction *old);
  14. int sigprocmask(int how, const sigset_t *mask, sigset_t *old);
  15. #endif /* ! SIGNAL_H */