Skip to content

Commit

Permalink
lower algorithm priority to be one less than timer
Browse files Browse the repository at this point in the history
  • Loading branch information
Octavian-Zhang committed Jun 1, 2022
1 parent 41fb15c commit 923eb7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MissionApp/src/ert_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ int main(int argc, const char *argv[])
// Unused arguments
(void)(argc);
(void)(argv);
priority[0] = sched_get_priority_max(SCHED_RR);
priority[0] = sched_get_priority_max(SCHED_RR)-1;
periodicTriggerRate[0] = 0.1;
printf("**starting the model**\n");
fflush(stdout);
Expand Down

0 comments on commit 923eb7e

Please sign in to comment.