yakamaster :
Then there is no performance enhancement or what so ever?
Nope.
Cores are unparked by default. Parking is something that an operating system can do to put a core to sleep when there's not enough work to do to justify keeping it powered up.
When threads (and/or processes depending on the operating system's model) become ready for execution the operating system has a decision to make. If one or more cores are parked it can wake them up and load the thread/process onto the logical processor representing that core. However, this causes the microprocessor to consume more power. Alternatively it can keep the cores parked and simply throw the thread/process onto the ready queue. This causes the thread/process to wait longer in the...