| 86 | namespace caffe { |
| 87 | |
| 88 | SignalHandler::SignalHandler(SolverAction::Enum SIGINT_action, |
| 89 | SolverAction::Enum SIGHUP_action): |
| 90 | SIGINT_action_(SIGINT_action), |
| 91 | SIGHUP_action_(SIGHUP_action) { |
| 92 | HookupHandler(); |
| 93 | } |
| 94 | |
| 95 | SignalHandler::~SignalHandler() { |
| 96 | UnhookHandler(); |
nothing calls this directly
no test coverage detected