Hello,
I'm looking for a way to access dynamically to the "father" process of a forked process...
|p1|
p1 := Processor activeProcess.
[ how to retrieve dynamically the process p1 here ? ] fork.
[ |p2|
p2 := Processor activeProcess.
[ how to retrieve dynamically the process p1 here (grandfather of the current process) ?
how to retrieve dynamically the process p2 here (father of the current process) ?] fork] fork.
... and so on.
How to access dynamically to the ancestors of a process ?
Perhaps by the suspendedContext ? Or by something else ?