5113c1418d
In order to bring consistency in-tree, migrate all subsystems code to the new prefix <zephyr/...>. Note that the conversion has been scripted, refer to zephyrproject-rtos#45388 for more details. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
18 lines
308 B
C
18 lines
308 B
C
/*
|
|
* Copyright (c) 2019 Intel corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/init.h>
|
|
#include <string.h>
|
|
#include <zephyr/kernel.h>
|
|
|
|
void sys_trace_isr_enter(void) {}
|
|
|
|
void sys_trace_isr_exit(void) {}
|
|
|
|
void sys_trace_isr_exit_to_scheduler(void) {}
|
|
|
|
void sys_trace_idle(void) {}
|