Hi, You can try to increase your Thread priority. This sounds like the thing you wanted, but you have to be carefully though, because when doing this you could make the OS instable.
BOOL SetThreadPriority(
HANDLE hThread,
int nPriority
);
Where hThread is the handle of the thread and nPriority is one of the following values: THREAD_PRIORITY_TIME_CRITICAL THREAD_PRIORITY_HIGHEST THREAD_PRIORITY_ABOVE_NORMAL THREAD_PRIORITY_NORMAL THREAD_PRIORITY_BELOW_NORMAL THREAD_PRIORITY_LOWEST THREAD_PRIORITY_IDLE codito ergo sum