Date: Tue, 18 Apr 2000 11:29:37 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: djgpp AT delorie DOT com Subject: Re: fork off In-Reply-To: <8dg6ai$hnv$1@news7.svr.pol.co.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Tue, 18 Apr 2000, Josiha Hudini wrote: > The fork() function Does it work in win/dos, and if so how do i use it? You need to replace it with code that works around this limitation. What code exactly, depends on the application and how it works internally. > I have a server that needs to be multi-client, but can only get one client > at a time. The fork function was suggested to me, and was included in a > program for linux but the same code don't work in windows/dos. On DOS, you don't have good alternatives. On Windows, try launching the child program via the "start" program supplied with Windows.