dragondad
September 1st, 2005, 06:21 PM
I have a project to convert the existing multiple process model to multiple thread model. Beside the benefit I can get from the multiple thread model (NO more IPC, yes), one real concern is that I have to create multiple thread under one of the thread.
The story is like this, the main program should create several threads (to replace the processes), and one of the thread should create its own multiple threads (to mapping the old design). The question are:
1. is this design work?
2. if this design work, what is the possible problem for multiple level thread. can the subthread of the thread directly communicate with the main program?
Please let me know if you have similar experience before, I like to know.
Thanks.
The story is like this, the main program should create several threads (to replace the processes), and one of the thread should create its own multiple threads (to mapping the old design). The question are:
1. is this design work?
2. if this design work, what is the possible problem for multiple level thread. can the subthread of the thread directly communicate with the main program?
Please let me know if you have similar experience before, I like to know.
Thanks.