Re: [uml-devel] Regarding Process creation in UML tracing thread mode

2007-03-21 Thread Jeff Dike
On Wed, Mar 21, 2007 at 10:11:48PM +0800, Krishnappa Abhijith-A21204 wrote: > Also from your below response it means that: UML just have a > task_structure maintained > Also I never saw the UML specific schedule() code in .../arch/um does > UML uses the host schedule itself ? UML, like any oth

Re: [uml-devel] Regarding Process creation in UML tracing thread mode

2007-03-21 Thread Krishnappa Abhijith-A21204
creation in UML tracing thread mode On Wed, Mar 21, 2007 at 07:51:44PM +0800, Krishnappa Abhijith-A21204 wrote: > Regarding fork() implementation UML in tracing thread > (tt) mode Whenever we call fork in UML the following happens: > > 2 process gets created > 1 on UML s

Re: [uml-devel] Regarding Process creation in UML tracing thread mode

2007-03-21 Thread Jeff Dike
On Wed, Mar 21, 2007 at 07:51:44PM +0800, Krishnappa Abhijith-A21204 wrote: > Regarding fork() implementation UML in tracing thread (tt) > mode > Whenever we call fork in UML the following happens: > > 2 process gets created > 1 on UML say U_1 and 1 on HOST say H_1 No, one process

[uml-devel] Regarding Process creation in UML tracing thread mode

2007-03-21 Thread Krishnappa Abhijith-A21204
Hi, Regarding fork() implementation UML in tracing thread (tt) mode Whenever we call fork in UML the following happens: 2 process gets created 1 on UML say U_1 and 1 on HOST say H_1 Process in host gets created by tracing thread but how does a process in UML gets created ? Also