actions_exception.h 618 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #ifndef __ACTIONS_EXCEPTION_H
  2. #define __ACTIONS_EXCEPTION_H
  3. typedef void (*actions_exception_callback_t)(void);
  4. typedef struct
  5. {
  6. actions_exception_callback_t init_cb;
  7. actions_exception_callback_t run_cb;
  8. } actions_exception_callback_routine_t;
  9. #ifdef CONFIG_ACTIONS_EXCEPTION
  10. int exception_register_callbacks(actions_exception_callback_routine_t *cb);
  11. void exception_init(void);
  12. void exception_run(void);
  13. #else
  14. int exception_register_callbacks(actions_exception_callback_routine_t *cb)
  15. {
  16. return -ENOTSUP;
  17. }
  18. void exception_init(void)
  19. {
  20. return;
  21. }
  22. void exception_run(void)
  23. {
  24. return;
  25. }
  26. #endif
  27. #endif