Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!utgpu!water!watnot!watmath!clyde!cbatt!ihnp4!ptsfa!lll-lcc!styx!ames!oliveb!sun!gorodish!guy From: guy@gorodish.UUCP Newsgroups: comp.lang.c Subject: Re: CAN YOU SUGGEST A BOOK ON IPC IN RESPECTTO THE C LANGUAGE? Message-ID: <14292@sun.uucp> Date: Sat, 28-Feb-87 05:28:31 EST Article-I.D.: sun.14292 Posted: Sat Feb 28 05:28:31 1987 Date-Received: Sun, 1-Mar-87 15:33:49 EST References: <42@osupyr.UUCP> Sender: news@sun.uucp Reply-To: guy@sun.UUCP (Guy Harris) Organization: Sun Microsystems, Mountain View Lines: 18 Keywords: ipc > I need a "good" book that covers inter-process-communication (ipc) >within the C programming language. Any suggestions where I might purchase >such a book? Yes. You probably can't find it anywhere. The C language and its standard libraries include no support whatsoever for interprocess communication. That is left up to the operating system and its libraries. If you're going to do this work under UNIX, grab one of the UNIX books out there; find out what IPC facilities - S5-style shared memory, what would have been 4.2BSD style shared memory had they implemented "mmap" (which some vendors have done or will do), sockets using some particular protocol family, streams/TLI implementations of some protocol family, S5-style messages, named pipes, a shared file, etc. - your system provides, and find a book that discusses them. If you're going to this work under VMS, find a VMS book, etc.