PCB Environment 2
Loading...
Searching...
No Matches
Signals.hpp
1#ifndef GYM_PCB_SIGNALS_H
2#define GYM_PCB_SIGNALS_H
3
4#include <stack>
5
9{
10public:
11 void install(void (*handler_fptr)(int));
12 void restore();
13private:
14 std::stack<void(*)(int)> mStack;
15};
16
17#endif // GYM_PCB_SIGNALS_H
Definition Signals.hpp:9