user_work_q.c 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * Copyright (c) 2017 Actions Semi Co., Ltd.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. * Author: wh<wanghui@actions-semi.com>
  16. *
  17. * Change log:
  18. * 2017/7/7: Created by wh.
  19. */
  20. #include <kernel.h>
  21. #include <init.h>
  22. #include "os_common_api.h"
  23. #ifdef CONFIG_USER_WORK_Q
  24. static struct k_work_q user_workq;
  25. static K_THREAD_STACK_DEFINE(user_workq_stack, CONFIG_USER_WORK_Q_STACK_SIZE);
  26. static int user_work_q_init(const struct device *dev)
  27. {
  28. ARG_UNUSED(dev);
  29. k_work_queue_start(&user_workq, user_workq_stack,
  30. K_THREAD_STACK_SIZEOF(user_workq_stack),
  31. CONFIG_USER_WORK_Q_PRIORITY, NULL);
  32. k_thread_name_set(&user_workq.thread, "userworkq");
  33. return 0;
  34. }
  35. SYS_INIT(user_work_q_init, POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);
  36. #endif
  37. os_work_q *os_get_user_work_queue(void)
  38. {
  39. #ifdef CONFIG_USER_WORK_Q
  40. return &user_workq;
  41. #else
  42. return NULL;
  43. #endif
  44. }