| 78 | } |
| 79 | |
| 80 | static void pathTranslator_Restart() |
| 81 | { |
| 82 | pathTranslator_Init(); |
| 83 | char *tmp = (char*) JALLOC_MALLOC(MAX_ENV_VAR_SIZE); |
| 84 | DmtcpGetRestartEnvErr_t ret = dmtcp_get_restart_env(ENV_PATH_MAPPING, tmp, MAX_ENV_VAR_SIZE); |
| 85 | if (ret == RESTART_ENV_SUCCESS) { |
| 86 | populatePathMapping(tmp); |
| 87 | } |
| 88 | |
| 89 | JALLOC_FREE(tmp); |
| 90 | } |
| 91 | |
| 92 | static void |
| 93 | pathTranslator_PrepareForExec(DmtcpEventData_t *data) |
no test coverage detected