Linux: Make "ulimit" limits be cumulative across spawned "subprocesses"

2

1

Let's say I have program #1 launching program #2 which is launching program #3.

If I call

ulimit -t 10

before calling program #1, then EACH program will be alloted 10 seconds of CPU time.

Could I have this limit apply to the total CPU time used by all 3 programs? Basically I'm talking about the time as shown by 'top -S' - this will show the total cumulative CPU time including all spawned "subprocesses".

Most useful to me would be to have this cumulative behavior apply for "-t" (CPU time). It would be great though if I could have it apply to the other flags as well (maximum memory used etc.).

If ulimit can't do this, is there an alternate way of doing it?

anon

Posted 2011-03-24T22:42:16.023

Reputation:

Answers

1

Philip Durbin

Posted 2011-03-24T22:42:16.023

Reputation: 2 927

2

this limit is imposed per process ; as long they are seen as different processes (top, htop, ps) the limit will be for each. rewrite the code and make the second and third program worker threads.

adrian_sev

Posted 2011-03-24T22:42:16.023

Reputation: 31