mirror of
https://github.com/nasa/fprime.git
synced 2025-12-11 13:54:34 -06:00
* Refactored type organization * Creating better configuration/types header hierarchy * Replace FpConfig type aliases with FPP generated aliases * Add the aliases to the FPP model * Config + Type Aliases builds * Renamed Fw/Types.h,hpp to Fw/FPrimeBasicTypes.h,hpp * Updating to FPP-a7 * Adding newline * sp * Fixing minor nit from review * Spurious ; --------- Co-authored-by: Andrei Tumbar <andrei.tumbar@jpl.nasa.gov>
38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
// ======================================================================
|
|
// \title FatalHandlerImpl.cpp
|
|
// \author tcanham
|
|
// \brief cpp file for FatalHandler component implementation class
|
|
//
|
|
// \copyright
|
|
// Copyright 2009-2015, by the California Institute of Technology.
|
|
// ALL RIGHTS RESERVED. United States Government Sponsorship
|
|
// acknowledged.
|
|
//
|
|
// ======================================================================
|
|
|
|
#include <cstdlib>
|
|
#include <csignal>
|
|
#include <Fw/Logger/Logger.hpp>
|
|
#include <Svc/FatalHandler/FatalHandlerComponentImpl.hpp>
|
|
#include <Os/Task.hpp>
|
|
#include <Fw/FPrimeBasicTypes.hpp>
|
|
|
|
namespace Svc {
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Handler implementations for user-defined typed input ports
|
|
// ----------------------------------------------------------------------
|
|
|
|
void FatalHandlerComponentImpl::FatalReceive_handler(
|
|
const FwIndexType portNum,
|
|
FwEventIdType Id) {
|
|
// for **nix, delay then exit with error code
|
|
Fw::Logger::log("FATAL %d handled.\n",Id);
|
|
(void)Os::Task::delay(Fw::TimeInterval(1, 0));
|
|
Fw::Logger::log("Exiting with abort signal and core dump file.\n");
|
|
(void)raise( SIGABRT );
|
|
exit(1);
|
|
}
|
|
|
|
} // end namespace Svc
|