home *** CD-ROM | disk | FTP | other *** search
- System V IPC Semaphore and Shared Memory emulation routines for NeXT.
- --------------------------------------------------------------------
-
- Copyright (C) 1993--1996 Tom R. Hageman. <tom@rna.nl>
-
-
- Introduction.
- ------------
-
- This package is an emulation of shared memory and semaphore routines as
- known from UNIX System V. It is based on the mmap() system call which
- provides shared memory on Mach OS. (note that mmap is as yet
- undocumented and presumably not supported by NeXT.)
-
- License
- -------
-
- Read SysVIPC-3.4.Announce.rtf (RTF format) and SysVIPC-3.4.License.rtf (RTF
- format) for details. In short SysVIPC is shareware for non-commercial
- educational use (note, 'educational use' and not 'educational users') and
- is commercially licensed otherwise.
-
-
- Installation.
- ------------
-
- If you have the source distribution, run `make install'.
- If you have the Installer package (SysVIPC.pkg), just install.
-
- This copies the library "libIPC.a" to "/usr/local/lib"
- and the "sys/*.h" header files to "/LocalDeveloper/Headers".
- These directories are in the search path of the compiler, so if you
- want to use these routines all you have to do is link with "-lIPC".
-
- (For convenience/compatibility with other systems "/usr/local/include"
- is created as a link to "/LocalDeveloper/Headers" if it does not yet exist.)
-
-
- Implementation notes and limitations.
- ------------------------------------
-
- The implementation is as good as 100% complete (sometimes even more than
- complete). There are a few minor incompatibilities and some extra
- compatibilities beyond the API on the implementation level. These
- differences are (implementation level compatibilities are marked with '+',
- incompatibilities are marked with '–' and remarks are marked with 'o'):
-
- + Shmids and semids are system-wide unique -- as most System V
- implementations. This means that you can create, for instance, a
- semaphore set with semget() in one process, scribble the semid
- obtained by that down, and use it directly in another process to
- access that same semaphore set.
-
- - You cannot give away a semaphore- or shared-memory id to another user
- unless you are the super user. A semid or shmid is owned by a single
- user at a time, just like a file. (on system V it can be owned by
- the creator and another user.)
-
- Semaphores:
-
- - all semop() and semctl() operations require READ + WRITE access to the
- semid, even those that according to the documentation only need READ
- access.
-
- Shared memory:
-
- + a single shmid can be attached multiple times by the same program
- (to different addresses) -- this is the behaviour of most System V
- implementations, but it is usually not clearly documented.
-
- o all shmids require at least READ access in order to be useful --
- this is also true of System V shmids, but again, is usually not
- clearly pointed out.
-
- - shmat() and shmdt() cannot update the shmid_ds control structure
- if the shmid is read-only.
-
- - the emulation is not aware of processes that do not explicitly detach
- their shared memory segments before exiting. In short, the `shm_nattch'
- count may not reflect the actual number of segments attached.
-
- o the shmctl() commands SHM_LOCK and SHM_UNLOCK are currently not
- implemented -- these are used in other implementations to lock /
- unlock the shared memory segment in physical memory, i.e., to avoid
- swapping (for performance?)
-