| 58 | } |
| 59 | |
| 60 | static void worker_set_local_env(const char *name, const char *value) { |
| 61 | if (value && value[0]) { |
| 62 | (void)cbm_setenv(name, value, 1); |
| 63 | } else { |
| 64 | (void)cbm_unsetenv(name); |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | void cbm_index_set_worker_role_options(bool is_worker, const char *response_out, bool single_thread, |
| 69 | const char *marker_file, const char *quarantine_file, |
no test coverage detected