dc5d935d12
The existing __stack decorator is not flexible enough for upcoming thread stack memory protection scenarios. Wrap the entire thing in a declaration macro abstraction instead, which can be implemented on a per-arch or per-SOC basis. Issue: ZEP-2185 Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
34 lines
643 B
C
34 lines
643 B
C
/*
|
|
* Copyright (c) 2016 Wind River Systems, Inc.
|
|
* Copyright (c) 2016 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
*
|
|
* System workqueue.
|
|
*/
|
|
|
|
#include <kernel.h>
|
|
#include <init.h>
|
|
|
|
K_THREAD_STACK_DEFINE(sys_work_q_stack, CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE);
|
|
|
|
struct k_work_q k_sys_work_q;
|
|
|
|
static int k_sys_work_q_init(struct device *dev)
|
|
{
|
|
ARG_UNUSED(dev);
|
|
|
|
k_work_q_start(&k_sys_work_q,
|
|
sys_work_q_stack,
|
|
K_THREAD_STACK_SIZEOF(sys_work_q_stack),
|
|
CONFIG_SYSTEM_WORKQUEUE_PRIORITY);
|
|
|
|
return 0;
|
|
}
|
|
|
|
SYS_INIT(k_sys_work_q_init, POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);
|