On Fri, Oct 12, 2001 at 04:17:39PM +0100, David Hamilton wrote: > Is it allowed to create a thread from within a thread in the real-time > kernel? > I can create two threads from the init_module function, but if I try to > create the second from within the first thread, my system crashes big > time!!!
Well, you could probably pull it off with some scary voodoo, but I wouldn't recommend it. Doing real-time htings, then copying a vast block of memory and invoking stuff in it, with all that entails? You're better off creating a variety of thread pool in init_module as a one-off instead of trying to create threads by others that're doing RT things. Gary (-; -- [rtl] --- To unsubscribe: echo "unsubscribe rtl" | mail [EMAIL PROTECTED] OR echo "unsubscribe rtl <Your_email>" | mail [EMAIL PROTECTED] -- For more information on Real-Time Linux see: http://www.rtlinux.org/
