mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- allows configuration without an environment variable. For compatibility still respect FOAM_SIGFPE and FOAM_SETNAN env-variables - The env-variables are now treated as true/false switch values. Previously there was just a check for env exists or not, but this can be fairly fragile for a user's environment.
112 lines
2.9 KiB
C++
112 lines
2.9 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Class
|
|
Foam::sigStopAtWriteNow
|
|
|
|
Description
|
|
Signal handler for interupt defined by
|
|
OptimisationSwitches::stopAtWriteNowSignal
|
|
|
|
Write and stop the job.
|
|
|
|
SourceFiles
|
|
sigStopAtWriteNow.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef sigStopAtWriteNow_H
|
|
#define sigStopAtWriteNow_H
|
|
|
|
#include <signal.h>
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
class Time;
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class sigStopAtWriteNow Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class sigStopAtWriteNow
|
|
{
|
|
// Private data
|
|
|
|
//- Number of signal to use
|
|
static int signal_;
|
|
|
|
//- Pointer to Time
|
|
static Time const* runTimePtr_;
|
|
|
|
//- Saved old signal trapping setting
|
|
static struct sigaction oldAction_;
|
|
|
|
|
|
// Private Member Functions
|
|
|
|
//- Handler for caught signals
|
|
static void sigHandler(int);
|
|
|
|
|
|
public:
|
|
|
|
//- wip. Have setter have access to signal_
|
|
friend class addstopAtWriteNowSignalToOpt;
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct null
|
|
sigStopAtWriteNow();
|
|
|
|
//- Construct from components
|
|
sigStopAtWriteNow(const bool verbose, const Time& runTime);
|
|
|
|
|
|
//- Destructor
|
|
~sigStopAtWriteNow();
|
|
|
|
|
|
// Member functions
|
|
|
|
//- (re)set signal catcher
|
|
static void set(const bool verbose);
|
|
|
|
//- Is active?
|
|
bool active() const;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|