F´ Flight Software - C/C++ Documentation
devel
A framework for building embedded system applications to NASA flight quality standards.
FatalHandlerComponentLinuxImpl.cpp
Go to the documentation of this file.
1
// ======================================================================
2
// \title FatalHandlerImpl.cpp
3
// \author tcanham
4
// \brief cpp file for FatalHandler component implementation class
5
//
6
// \copyright
7
// Copyright 2009-2015, by the California Institute of Technology.
8
// ALL RIGHTS RESERVED. United States Government Sponsorship
9
// acknowledged.
10
//
11
// ======================================================================
12
13
#include <cstdlib>
14
#include <csignal>
15
#include <
Fw/Logger/Logger.hpp
>
16
#include <
Svc/FatalHandler/FatalHandlerComponentImpl.hpp
>
17
#include <
Os/Task.hpp
>
18
#include <
FpConfig.hpp
>
19
20
namespace
Svc
{
21
22
// ----------------------------------------------------------------------
23
// Handler implementations for user-defined typed input ports
24
// ----------------------------------------------------------------------
25
26
void
FatalHandlerComponentImpl::FatalReceive_handler(
27
const
NATIVE_INT_TYPE
portNum,
28
FwEventIdType
Id) {
29
// for **nix, delay then exit with error code
30
Fw::Logger::logMsg
(
"FATAL %d handled.\n"
,Id,0,0,0,0,0);
31
(void)
Os::Task::delay
(1000);
32
Fw::Logger::logMsg
(
"Exiting with abort signal and core dump file.\n"
,0,0,0,0,0,0);
33
(void)
raise
( SIGABRT );
34
exit(1);
35
}
36
37
}
// end namespace Svc
NATIVE_INT_TYPE
PlatformIntType NATIVE_INT_TYPE
Definition:
BasicTypes.h:51
FatalHandlerComponentImpl.hpp
FwEventIdType
U32 FwEventIdType
Definition:
FpConfig.h:62
FpConfig.hpp
C++-compatible configuration header for fprime configuration.
Logger.hpp
Task.hpp
Fw::Logger::logMsg
static void logMsg(const char *fmt, POINTER_CAST a0=0, POINTER_CAST a1=0, POINTER_CAST a2=0, POINTER_CAST a3=0, POINTER_CAST a4=0, POINTER_CAST a5=0, POINTER_CAST a6=0, POINTER_CAST a7=0, POINTER_CAST a8=0, POINTER_CAST a9=0)
Definition:
Logger.cpp:18
Os::Task::delay
static TaskStatus delay(NATIVE_UINT_TYPE msecs)
delay the task
Definition:
Task.cpp:43
Svc
Definition:
ActiveRateGroupCfg.hpp:18
Svc
FatalHandler
FatalHandlerComponentLinuxImpl.cpp
Generated by
1.9.1