RaftLib  0.3a
C++ Stream Processing Template Library
signalvars.hpp
1 
20 #ifndef _SIGNALVARS_HPP_
21 #define _SIGNALVARS_HPP_ 1
22 #include <cstdint>
23 
24 namespace raft{
31 static const std::uint32_t MAX_SYSTEM_SIGNAL( 0xfff );
32 
33 enum signal : std::uint32_t {
34  none = 0,
35  quit,
36  term,
37  eof = MAX_SYSTEM_SIGNAL
38 };
39 }
40 #endif /* END _SIGNALVARS_HPP_ */
Definition: globalmap.cpp:3