| 101 | } |
| 102 | |
| 103 | void |
| 104 | SyslogCheckpointer_RestoreService() |
| 105 | { |
| 106 | if (_isSuspended) { |
| 107 | _isSuspended = false; |
| 108 | JASSERT(_option >= 0 && _facility >= 0) (_option) (_facility); |
| 109 | openlog((_identIsNotNULL ? _ident().c_str() : NULL), |
| 110 | _option, _facility); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | void |
| 115 | SyslogCheckpointer_ResetOnFork() |
no test coverage detected