[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Subversion 0.19.1 released.

From: <mbk_at_boredom.org>
Date: 2003-03-13 19:35:18 CET

On Thu, Mar 13, 2003 at 08:04:07AM -0800, rbb@rkbloom.net wrote:
> to work with fork(). Obviously, no native DLLs are. This is why cygwin
> can work, they don't have to deal with native DLLs.
>

The last time I looked at the cygwin source, which was several years ago,
they accomplished fork by doing, IIRC:

        p=CreateProcess(this exe,NO_THREAD)
        for (my entire address space) {
                WriteProcessMem(p,ReadProcessMem(me));
        }
        t=CreateThread(other process);

IOW, not COW. I don't know if this has been fixed but lack of COW
semantics makes simulated-fork a non-starter.

--ben

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Thu Mar 13 19:36:07 2003

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.