| 1210 | } |
| 1211 | |
| 1212 | void |
| 1213 | LogObjectManager::open_local_pipes() |
| 1214 | { |
| 1215 | // for all local objects that write to a pipe, call open_file to force |
| 1216 | // the creation of the pipe so that any potential reader can see it |
| 1217 | // |
| 1218 | for (unsigned i = 0; i < this->_objects.size(); i++) { |
| 1219 | LogObject *obj = _objects[i]; |
| 1220 | if (obj->writes_to_pipe()) { |
| 1221 | obj->m_logFile->open_file(); |
| 1222 | } |
| 1223 | } |
| 1224 | } |
| 1225 | |
| 1226 | void |
| 1227 | LogObjectManager::transfer_objects(LogObjectManager &old_mgr) |
no test coverage detected