Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
saikishor committed Nov 3, 2024
1 parent 0d2050e commit 0d64686
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/realtime_helpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,10 @@ bool set_thread_affinity(int pid, int core, std::string & message)
}
switch (errno) {
case EFAULT:
message = "Call of sched_setaffinity with invalid cpuset";
message = "Call of sched_setaffinity with invalid cpuset!";
break;
case EINVAL:
message = "Call of sched_setaffinity with an invalid cpu core";
message = "Call of sched_setaffinity with an invalid cpu core!";
break;
case ESRCH:
message =
Expand Down

0 comments on commit 0d64686

Please sign in to comment.