irq_offload.h 849 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Copyright (c) 2015 Intel corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief IRQ Offload interface
  9. */
  10. #ifndef ZEPHYR_INCLUDE_IRQ_OFFLOAD_H_
  11. #define ZEPHYR_INCLUDE_IRQ_OFFLOAD_H_
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. typedef void (*irq_offload_routine_t)(const void *parameter);
  16. /**
  17. * @brief Run a function in interrupt context
  18. *
  19. * This function synchronously runs the provided function in interrupt
  20. * context, passing in the supplied device. Useful for test code
  21. * which needs to show that kernel objects work correctly in interrupt
  22. * context.
  23. *
  24. * @param routine The function to run
  25. * @param parameter Argument to pass to the function when it is run as an
  26. * interrupt
  27. */
  28. void irq_offload(irq_offload_routine_t routine, const void *parameter);
  29. #ifdef __cplusplus
  30. }
  31. #endif
  32. #endif /* _SW_IRQ_H_ */