Rename process_simple_wait to process_wait

Adding "simple" in the function name brings no benefit.
This commit is contained in:
Romain Vimont
2021-01-03 16:40:34 +01:00
parent cc6f5020d8
commit 821c175730
6 changed files with 7 additions and 7 deletions

View File

@@ -179,7 +179,7 @@ file_handler_stop(struct file_handler *file_handler) {
if (!process_terminate(file_handler->current_process)) {
LOGW("Could not terminate install process");
}
process_simple_wait(file_handler->current_process, NULL);
process_wait(file_handler->current_process, NULL);
file_handler->current_process = PROCESS_NONE;
}
mutex_unlock(file_handler->mutex);