005-kernel-6.1.patch 427 B

1234567891011121314
  1. --- a/include/osdep_service_linux.h
  2. +++ b/include/osdep_service_linux.h
  3. @@ -163,7 +163,11 @@ typedef void* _thread_hdl_;
  4. typedef int thread_return;
  5. typedef void* thread_context;
  6. +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,17,0))
  7. +#define thread_exit() kthread_complete_and_exit(NULL, 0)
  8. +#else
  9. #define thread_exit() complete_and_exit(NULL, 0)
  10. +#endif
  11. typedef void timer_hdl_return;
  12. typedef void* timer_hdl_context;