| 63 | } |
| 64 | |
| 65 | void deserialize(rx::Deserializer &s) { |
| 66 | while (true) { |
| 67 | auto pid = s.deserialize<pid_t>(); |
| 68 | if (pid == static_cast<pid_t>(-1) || s.failure()) { |
| 69 | break; |
| 70 | } |
| 71 | |
| 72 | auto process = orbis::createProcess(nullptr, pid); |
| 73 | s.deserialize(*process); |
| 74 | |
| 75 | if (s.failure()) { |
| 76 | break; |
| 77 | } |
| 78 | } |
| 79 | } |
| 80 | }; |
| 81 | |
| 82 | static auto g_processList = |
nothing calls this directly
no test coverage detected