| 128 | } |
| 129 | |
| 130 | void |
| 131 | VirtualPidTable::postRestart() |
| 132 | { |
| 133 | if (_dmtcp_ppid != 1) { |
| 134 | updateMapping(_dmtcp_ppid, _real_getppid()); |
| 135 | } |
| 136 | |
| 137 | VirtualIdTable<pid_t>::postRestart(); |
| 138 | _do_lock_tbl(); |
| 139 | _idMapTable[getpid()] = _real_getpid(); |
| 140 | _do_unlock_tbl(); |
| 141 | } |
| 142 | |
| 143 | void |
| 144 | VirtualPidTable::refresh() |
no test coverage detected