zephyr/arch/posix/core/fatal_trap.c

13 lines
168 B
C
Raw Permalink Normal View History

/*
* Copyright (c) 2023 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <signal.h>
void nsi_raise_sigtrap(void)
{
raise(SIGTRAP);
}