Skip to content

Commit

Permalink
Improve determination-renderer's futex-based waiting system
Browse files Browse the repository at this point in the history
  • Loading branch information
white-axe committed Sep 2, 2024
1 parent 449d120 commit f817089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/determination-renderer/src/renderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@ inline bool render(char *projectPath) {
switch (result) {
case LogRenderProgress:
log_progress();
result = wait_if(LogRenderProgress, WaitForRenderFinish);
break;
case Ok:
log_progress();
Expand All @@ -238,6 +237,7 @@ inline bool render(char *projectPath) {
default:
break;
}
result = wait_if(result, WaitForRenderFinish);
}
}

Expand Down

0 comments on commit f817089

Please sign in to comment.