signal.h 730 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * Copyright (c) 2018 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_POSIX_SIGNAL_H_
  7. #define ZEPHYR_INCLUDE_POSIX_SIGNAL_H_
  8. #include "posix_types.h"
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. #ifndef SIGEV_NONE
  13. #define SIGEV_NONE 1
  14. #endif
  15. #ifndef SIGEV_SIGNAL
  16. #define SIGEV_SIGNAL 2
  17. #endif
  18. #ifndef SIGEV_THREAD
  19. #define SIGEV_THREAD 3
  20. #endif
  21. typedef union sigval {
  22. int sival_int;
  23. void *sival_ptr;
  24. } sigval;
  25. typedef struct sigevent {
  26. int sigev_notify;
  27. int sigev_signo;
  28. sigval sigev_value;
  29. void (*sigev_notify_function)(sigval val);
  30. #ifdef CONFIG_PTHREAD_IPC
  31. pthread_attr_t *sigev_notify_attributes;
  32. #endif
  33. } sigevent;
  34. #ifdef __cplusplus
  35. }
  36. #endif
  37. #endif /* POSIX__SIGNAL_H */