Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
Process.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_OS_LINUX_PROCESS_H
4#define IMT_BASE_OS_LINUX_PROCESS_H
5
6#include <cstdint>
7#include <string>
8
9namespace imt {
10namespace base {
11namespace os {
12namespace linux {
13
17class Process {
18public:
19
23 using HandlerFunction = void (*)(int32_t);
24
29 static void exit(int32_t exitCode) noexcept;
30
36 static void setSignalHandler(int32_t signalNumber, HandlerFunction function) noexcept;
37
42 static void signal(int32_t signalNumber) noexcept;
43
48 static void start(std::string const& command) noexcept;
49
54 static void resetSignalHandler(int32_t signalNumber) noexcept;
55};
56
57} // namespace linux
58} // namespace os
59} // namespace base
60} // namespace imt
61
62#endif // IMT_BASE_OS_LINUX_PROCESS_H
Helper class to call process specific functions.
Definition Process.h:17
static void start(std::string const &command) noexcept
Starts the given executable if it exists.
void(*)(int32_t) HandlerFunction
Defines the signal handler function signature.
Definition Process.h:23
static void signal(int32_t signalNumber) noexcept
Signals the given signal number.
static void resetSignalHandler(int32_t signalNumber) noexcept
Resets the signal handler for the given signal.
static void setSignalHandler(int32_t signalNumber, HandlerFunction function) noexcept
Sets the signal handler for the given signal.
static void exit(int32_t exitCode) noexcept
Exits the current process.
This is a application specific file which is used to configure Imt.Base.Core.Math.
__int32 int32_t
Definition stdint.h:60