I'm making a C# program, in my program, its call another program. The problem is the program that I called, its consume 100% of CPU. So I want to limit it to a const percentage of CPU usage. Its is posible and plz show me how. Thank you.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Is there any reason why you want to limit it to a specific percent of CPU usage? What about running it in lower priority, so that it still uses 100% of the CPU when nothing else requires it but gets put in the background when there are more important processes running? |
|||||||||||
|
|
The operating system should handle the time sharing between your two applications. There is probably a good reason your application is using 100% of the CPU, it is calculating something. If you need to wait for the completion of another process then you can use Process.WaitForExit to halt the execution of the calling thread while the other process completes. |
|||
|
|