You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
811 B
33 lines
811 B
/* |
|
* Copyright (C) 2014, 2015 Freie Universitaet Berlin (FUB) and INRIA |
|
* |
|
* This file is subject to the terms and conditions of the GNU Lesser |
|
* General Public License v2.1. See the file LICENSE in the top level |
|
* directory for more details. |
|
*/ |
|
|
|
/** |
|
* @ingroup native_cpu |
|
* @{ |
|
* |
|
* @file |
|
* @brief Crash handling functions implementation for 'native' port |
|
* |
|
* @author Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de> |
|
* @author Kévin Roussel <Kevin.Roussel@inria.fr> |
|
* @author Oliver Hahm <oliver.hahm@inria.fr> |
|
*/ |
|
|
|
#include <unistd.h> |
|
#include <signal.h> |
|
|
|
#include "native_internal.h" |
|
|
|
void panic_arch(void) |
|
{ |
|
#ifdef DEVELHELP |
|
/* since we're atop an Unix-like platform, |
|
just use the (developer-)friendly core-dump feature */ |
|
kill(_native_pid, SIGTRAP); |
|
#endif |
|
}
|
|
|