[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: New version of Wine ?
On Mon, 5 Jul 2004, Hannah Schroeter wrote:
> Hmmm. OpenBSD has IIRC *never* implemented the memory sharing semantics
> of 4.3BSD. And Linux neither, and Wine kinda runs on Linux, so it should
> at least be possible to have Wine run w/o a memory sharing vfork().
nope. linux does share. test below for the curious.
int
main(int argc, char *argv[])
{
int a = 0;
switch (vfork()) {
case 0:
a = 1;
_exit(0);
default:
printf("a is %d\n", a);
}
return 0;
}
--
you are more than the sum of what you consume