vote up 4 vote down star
1

In short, I want to find windows equivalent way of unix setrusage() function.

Can I limit resource usage for particular process? For example, 10 seconds cpu time and 50mb memory size. If the process run more than 10 seconds or consumes more than 50mb memory, the process will be terminated by windows.

flag

80% accept rate

2 Answers

vote up 3 vote down check

Try job objects! They even work for groups of processes and spawned processes. I think you can do all these limits using them

Here is more information http://msdn.microsoft.com/en-us/library/ms684161.aspx

link|flag
vote up 1 vote down

Look at the documentation for SetInformationJobObject.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.