File tree Expand file tree Collapse file tree
src/main/java/vanilla/java/affinity Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ https://www.ohloh.net/p/Java-Thread-Affinity
44
55[ Version History ]
66
7+ Version 1.6.1 - Improved behaviour on machines without thread affinity support esp. Macs.
8+
79Version 1.6 - First formal release available under https://github.com/peter-lawrey/Java-Thread-Affinity/tree/master/repository
810
911Version 1.5.5 - Added native support for Linux/amd64, thank you akerbos.
Original file line number Diff line number Diff line change @@ -297,7 +297,7 @@ public void bind(boolean wholeCore) {
297297 sb .append (" to " ).append (assignedThread );
298298 LOGGER .info (sb .toString ());
299299 }
300- } else {
300+ } else if ( cpuId >= 0 ) {
301301 bound = true ;
302302 assignedThread = Thread .currentThread ();
303303 if (LOGGER .isLoggable (Level .INFO ))
You can’t perform that action at this time.
0 commit comments