On Mon, Mar 24, 2008 at 10:33 AM, Balbir Singh
<balbir@linux.vnet.ibm.com> wrote:
Yes, sorry - CLONE_THREAD.
But:
- running a high-threadcount LinuxThreads process is by definition
inefficient and expensive (hence the move to NPTL)
- any potential performance hit is only paid at exit time
- in the normal case, any of your children or one of your siblings
will be a suitable alternate owner
- in the worst case, it's not going to be worse than doing a
for_each_thread() loop
so I don't think this would be a major problem
Paul
--