I need to avoid suspending of my thread. Is this possible. Or Is it possible to avoid kill of thread or process.
I need to implement;
CreateProcess(…)
BeginThread(…)
And this process or thread must;
– can’t be killed
– can’t be suspended
Is this possible under windows.
For example when i try to kill the system idle process, windows doesnt allow me to kill. Can we do same for our own created processes.
If this were possible, viri and trojans would be doing it. If it becomes possible, the next version of Windows, or ‘Critical security update’, will block off the wormhole, (again).
The system ‘idle process’ probably just halts the CPU/s in a loop. It may not even exist as a real process.