delay() and threads

If I have a process which kicks off a thread for say flashing a LED which
uses delay() for getting the flash rate durations will the parent process
get stopped while the thread is paused during delay()? The documentation
says that the calling process will be delayed…

No. delay() only has effect on the calling thread. Probably the doc is taken
from QNX4 where there were no threads.
Markus

“Jim Atkins” <jamesa@tsd.serco.com> wrote in message
news:9k94r8$hi6$1@inn.qnx.com

If I have a process which kicks off a thread for say flashing a LED which
uses delay() for getting the flash rate durations will the parent process
get stopped while the thread is paused during delay()? The documentation
says that the calling process will be delayed…