| 130 | |
| 131 | |
| 132 | Try<pid_t> MemoryTestHelper::pid() |
| 133 | { |
| 134 | if (s.isNone()) { |
| 135 | return Error("The subprocess has not been spawned yet"); |
| 136 | } |
| 137 | |
| 138 | return s->pid(); |
| 139 | } |
| 140 | |
| 141 | |
| 142 | // Send a request to the subprocess and wait for its signal that the |