| 150 | |
| 151 | |
| 152 | Future<Option<int>> reap(pid_t pid) |
| 153 | { |
| 154 | // The reaper process is instantiated in `process::initialize`. |
| 155 | process::initialize(); |
| 156 | |
| 157 | return dispatch( |
| 158 | internal::reaper, |
| 159 | &internal::ReaperProcess::reap, |
| 160 | pid); |
| 161 | } |
| 162 | |
| 163 | } // namespace process { |