Message-Id: <200005291745.UAA26054@alpha.netvision.net.il> Date: Mon, 29 May 2000 20:45:09 +0200 X-Mailer: Emacs 20.6 (via feedmail 8.1.emacs20_6 I) and Blat ver 1.8.5b From: "Eli Zaretskii" To: djgpp AT delorie DOT com CC: cldnet AT tiscalinet DOT it In-reply-to: <200005291633.SAA14812@maggiore.iperbole.bologna.it> (message from pad2369 on Mon, 29 May 2000 18:33:14 +0200 (MET DST)) Subject: Re: Shared Memory References: <8gtq4e$75o$1 AT lacerta DOT tiscalinet DOT it> <200005291633 DOT SAA14812 AT maggiore DOT iperbole DOT bologna DOT it> 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 > Date: Mon, 29 May 2000 18:33:14 +0200 (MET DST) > From: pad2369 > > I can't answer this question adequately, but I > translate it in English for other people to understand > and possibly help you: Thanks! > How can I allocate some memory and share it between > different processes, in order to use is as an exchange > area for messages? If the two programs are DJGPP programs, and if they run ins the same VM, then they can communicate through a memory block in the conventional memory. All you need is to pass the segment:offset pair to the other program, and access the data via dosmemget or _far* functions.