I'm trying to split my application into different sub processes, each one doing a very specific thing. Main reason is stability and better memory utilization because i use a conservative garbage collector (boehm-weisser).
I don't want to do it one huge process that does it all.
Unfortunately the subprocesses must display some windows so they will need NSApplication instances.
But i want them to appear as one application in Expose and leave the menubar of the main process when they became active.
Is there any way to do this?