ulimit -R
by jt1122 from LinuxQuestions.org on (#6GJYP)
from the bash man, ulimit options:"-R The maximum time a real-time process can run before blocking, in microseconds"
Code:(ulimit -R 1000;x=1; while true;do let x+=1;echo $x;done)doesn't stop after 1sec. why?
Thanks
Code:(ulimit -R 1000;x=1; while true;do let x+=1;echo $x;done)doesn't stop after 1sec. why?
Thanks