Click here to Skip to main content
15,887,936 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralI Can Not Manage This Task Pin
BernardIE53175-Feb-24 14:25
BernardIE53175-Feb-24 14:25 
GeneralRe: I Can Not Manage This Task Pin
honey the codewitch5-Feb-24 15:59
mvahoney the codewitch5-Feb-24 15:59 
GeneralRe: I Can Not Manage This Task Pin
BernardIE53175-Feb-24 16:58
BernardIE53175-Feb-24 16:58 
GeneralRe: I Can Not Manage This Task Pin
honey the codewitch5-Feb-24 17:00
mvahoney the codewitch5-Feb-24 17:00 
GeneralRe: I Can Not Manage This Task Pin
BernardIE53175-Feb-24 19:01
BernardIE53175-Feb-24 19:01 
GeneralRe: I Can Not Manage This Task Pin
dandy726-Feb-24 3:32
dandy726-Feb-24 3:32 
GeneralRe: I Can Not Manage This Task Pin
BernardIE53176-Feb-24 10:06
BernardIE53176-Feb-24 10:06 
GeneralRe: I Can Not Manage This Task Pin
dandy726-Feb-24 10:23
dandy726-Feb-24 10:23 
You're not entirely wrong...but it's all about spreading the load.

Back in the single-core systems days, it was very common to see Task Manager show a single task/process use up 100% of the CPU. Windows went out of its way to remain responsive, but you knew that when this happened - for more than a few seconds at a time - the system started to get wonky. That's a technical term. Smile | :)

With 2 CPUs, a single-threaded process using up all the processing power it can get will be shown as using 50% of the processor. You don't get the task split up across both CPUs "for free", it has to be coded to take advantage of multi-threading. That being said, if a process can spawn 2 threads, each hitting the CPU as hard as it can, you might see CPU usage go beyond that 50% and closer to 100% (but it'll hardly ever remain exactly at 100% no matter what).

The same pattern repeats for systems with 4 or 8+ cores. With 4 cores, a single-threaded process hitting the CPU hard will show 25% usage; with 8 cores, 12.5%. If the process starts spawning more threads, then you'll see the CPU usage climb.

I'm oversimplifying, but I generally find most people are happy with this sort of explanation and leave it at that.
GeneralRe: I Can Not Manage This Task Pin
BernardIE53176-Feb-24 10:35
BernardIE53176-Feb-24 10:35 
GeneralRe: I Can Not Manage This Task Pin
dandy726-Feb-24 10:58
dandy726-Feb-24 10:58 
GeneralRe: I Can Not Manage This Task Pin
BernardIE53176-Feb-24 11:11
BernardIE53176-Feb-24 11:11 
GeneralRe: I Can Not Manage This Task Pin
dandy727-Feb-24 10:48
dandy727-Feb-24 10:48 
GeneralRe: I Can Not Manage This Task Pin
stheller29-Feb-24 9:59
stheller29-Feb-24 9:59 
GeneralRe: I Can Not Manage This Task Pin
dandy729-Feb-24 11:33
dandy729-Feb-24 11:33 
GeneralRe: I Can Not Manage This Task Pin
Gary Stachelski 20216-Feb-24 13:16
Gary Stachelski 20216-Feb-24 13:16 
JokeRe: I Can Not Manage This Task Pin
jschell6-Feb-24 5:11
jschell6-Feb-24 5:11 
GeneralRe: I Can Not Manage This Task Pin
honey the codewitch6-Feb-24 6:25
mvahoney the codewitch6-Feb-24 6:25 
GeneralRe: I Can Not Manage This Task Pin
jochance7-Feb-24 18:42
jochance7-Feb-24 18:42 
GeneralRe: I Can Not Manage This Task Pin
honey the codewitch7-Feb-24 20:50
mvahoney the codewitch7-Feb-24 20:50 
GeneralRe: I Can Not Manage This Task Pin
jochance8-Feb-24 4:49
jochance8-Feb-24 4:49 
GeneralRe: I Can Not Manage This Task Pin
honey the codewitch8-Feb-24 5:14
mvahoney the codewitch8-Feb-24 5:14 
GeneralRe: I Can Not Manage This Task Pin
jochance9-Feb-24 6:12
jochance9-Feb-24 6:12 
GeneralRe: I Can Not Manage This Task Pin
honey the codewitch9-Feb-24 6:52
mvahoney the codewitch9-Feb-24 6:52 
GeneralRe: I Can Not Manage This Task Pin
jochance9-Feb-24 8:38
jochance9-Feb-24 8:38 
GeneralRe: I Can Not Manage This Task Pin
honey the codewitch9-Feb-24 9:04
mvahoney the codewitch9-Feb-24 9:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.