From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1C5oGE-0003fJ-3N for qemu-devel@nongnu.org; Fri, 10 Sep 2004 12:28:30 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1C5oGB-0003eY-JB for qemu-devel@nongnu.org; Fri, 10 Sep 2004 12:28:29 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1C5oGB-0003eM-Di for qemu-devel@nongnu.org; Fri, 10 Sep 2004 12:28:27 -0400 Received: from [80.91.224.249] (helo=main.gmane.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1C5oAi-0000iY-9L for qemu-devel@nongnu.org; Fri, 10 Sep 2004 12:22:48 -0400 Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1C5oAh-0006aq-00 for ; Fri, 10 Sep 2004 18:22:47 +0200 Received: from amarseille-206-1-19-93.w81-50.abo.wanadoo.fr ([81.50.177.93]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 10 Sep 2004 18:22:47 +0200 Received: from daimon55 by amarseille-206-1-19-93.w81-50.abo.wanadoo.fr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 10 Sep 2004 18:22:47 +0200 From: Ronald Date: Fri, 10 Sep 2004 18:22:43 +0200 Message-ID: References: <413BA018.60601@bellard.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: news Subject: [Qemu-devel] Re: Re: SAMBA support in QEMU Reply-To: daimon55@free.fr, qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Le Fri, 10 Sep 2004 16:37:56 +0200, Johannes Schindelin a écrit : > Hi, > > On Fri, 10 Sep 2004, Ronald wrote: >> No, the whole thing don't work, although the build goes fine and qemu >> don't crash, the process is not launched when using slirp_add_exec, >> something related to unimplemented fork_exec for win32? So I've just put >> some #ifndef around the smb related parts in vl.c to build latest cvs. > > You are building with MinGW? Yes, I am building on a linux box. >I don't know if qemu compiles using cygwin: > fork() is POSIX, which win32 doesn't comply to, so cygwin implements it. > AFAIK MinGW doesn't do that. > The closest to fork function I have found for the win32api is CreateProcess, but I am afraid it's beyond my current abilities to do a minimal windows version of fork_exec (if this is really this function which is responsible for the child process not running).