File tree Expand file tree Collapse file tree
affinity/src/main/java/net/openhft/affinity/impl Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -239,11 +239,11 @@ public static void sched_setaffinity(final BitSet affinity) {
239239 try {
240240 if (lib .sched_setaffinity (0 , size , cpuset ) != 0 ) {
241241 throw new IllegalStateException ("sched_setaffinity(0, " + size +
242- ", 0x" + Utilities .toHexString (affinity ) + " failed; errno=" + Native .getLastError ());
242+ ", 0x" + Utilities .toHexString (affinity ) + ") failed; errno=" + Native .getLastError ());
243243 }
244244 } catch (LastErrorException e ) {
245245 throw new IllegalStateException ("sched_setaffinity(0, " + size +
246- ", 0x" + Utilities .toHexString (affinity ) + " failed; errno=" + e .getErrorCode (), e );
246+ ", 0x" + Utilities .toHexString (affinity ) + ") failed; errno=" + e .getErrorCode (), e );
247247 }
248248 }
249249
You can’t perform that action at this time.
0 commit comments