2 * Copyright 2015, Rene Gollent, rene@gollent.com.
3 * Distributed under the terms of the MIT License.
16 SignalInfo(const SignalInfo
& other
);
17 SignalInfo(int signal
,
18 const struct sigaction
& handler
,
21 void SetTo(int signal
,
22 const struct sigaction
& handler
,
25 int Signal() const { return fSignal
; }
26 const struct sigaction
& Handler() const { return fHandler
; }
27 bool Deadly() const { return fDeadly
; }
30 struct sigaction fHandler
;
35 #endif // SIGNAL_INFO_H