This commit adds a test in tests/kernel/fatal test-suite, which checks that the HW stack overflow detection works as expected during a user thread system call. Signed-off-by: Ioannis Glaropoulos <Ioannis.Glaropoulos@nordicsemi.no>
16 lines
273 B
C
16 lines
273 B
C
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _TEST_SYSCALLS_H_
|
|
#define _TEST_SYSCALLS_H_
|
|
#include <zephyr.h>
|
|
|
|
__syscall void blow_up_priv_stack(void);
|
|
|
|
#include <syscalls/test_syscalls.h>
|
|
|
|
#endif /* _TEST_SYSCALLS_H_ */
|