[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Last revisionBoth sides next revision
howtos:hardware:processor_affinity [2013/01/13 18:09 (UTC)] – [Processor affinity] hazelhowtos:hardware:processor_affinity [2013/01/13 18:10 (UTC)] – [Taskset] hazel
Line 48: Line 48:
 $ taskset -cp 1 1337 $ taskset -cp 1 1337
 </code> You may notice the strange order of commandline options and arguments; first come all the options and then follow the argument values in pre-defined order... ''man taskset(1)'' is your friend. </code> You may notice the strange order of commandline options and arguments; first come all the options and then follow the argument values in pre-defined order... ''man taskset(1)'' is your friend.
-  * To start a new process with a fixed CPU affinity, you omit the "-p" switch and append a commandline, like this real-world example of starting a Minecraft server: <code>+  * To start a new process with a fixed CPU affinity, you omit the "-p" switch and append a command line, like this real-world example of starting a Minecraft server: <code>
 $ taskset -c 3 java -Xmx1024M -jar minecraft_server.jar nogui $ taskset -c 3 java -Xmx1024M -jar minecraft_server.jar nogui
 </code> which ties the Java process to the 4th CPU in your computer. The effect of this will be //immediately// obvious. </code> which ties the Java process to the 4th CPU in your computer. The effect of this will be //immediately// obvious.
 howtos:hardware:processor_affinity ()