lkml.org 
[lkml]   [2000]   [Aug]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: SCO: "thread creation is about a thousand times faster than on
Date
Alan Cox writes:
> [somebody]

>> In the POSIX spec fork demolishes all threads in the child.
>> This is the only sensible answer and it seems wasteful to
>> ignore the rare sensible parts of the POSIX spec. I think exec
>> should do the same thing: calling thread should die and be
>> replaced by a thread/process that is not in the thread group
>> since it no longer shares memory.
>
> It isnt a sensible answer. Think about a threaded web server
> firing off cgi scripts. You should probably kill those with
> the same mm. Especially if you have an unclone(CLONE_MM) since
> you can then unshare the VM for a thread and exec stuff off it

The clean answer is useless: change the VM, which is shared,
letting all the other threads crash. (they get SIGSEGV if they
run during the exec call, otherwise they run the new code at
some fairly random address)

So there are multiple sensible answers...

a. The shared VM changes. If it hurts, don't do that. No bloat here.
b. All other threads get killed. This is POSIX-friendly.
c. Force an unclone(~0) to go with the exec. Can do setuid CGI.

Doing unclone(CLONE_MM) is lame. Unclone all or none.


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 12:38    [W:0.457 / U:0.240 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site