Begin File: shared_mem_examples.tgz Description:shared memory example files Keywords: mmap shared mapmem catmem mkmem rmmem Version: Entered-date: Author: Ported-by: Original-site: Copying-policy: CMU Supplemental: catmem: concatenate (to standard output) named share memory regions. Modeled roughly after the standard utility "cat" Note the compile option "SHOULDWORK" -- I think the lseek(2) (or a stat(2)) call should work. Unfortunately, with the current release, it doesn't. mapmem: just map some regions int an out. is a framework for useing the mmap calls. mkmem: a program to create memory objects. mkmem, modelled after mkdir, will make a collection of memory objects listed as arguments. by default, the memory objects are 64K in length, this can be overridden with the "-s" switch. rmmem: a program to remove memory objects. modeled after the standard utility rm. archive contents: -rw-rw-r-- 0 usrfree support 1518 Jul 21 09:28 catmem.c -rw-rw-r-- 0 usrfree support 1224 Jul 21 15:33 mapmem.c -rw-rw-r-- 0 usrfree support 1387 Jul 21 09:24 mkmem.c -rw-rw-r-- 0 usrfree support 693 Jul 21 09:25 rmmem.c End