---------------------------------------------------------- ------ LIBSHM ------ Little library to avoid writing the same code about manage simple shared memory procedures. ---------------------------------------------------------- This software is free. It uses the GPL (Gnu Public Licence) licence of the Free Software Foundation (FSF). Source files of LIBIOFILE are provided in the src directory. ---------------------------------------------------------- How to use it ? --------------- Adapt the make bash script to work with your Linux WS and launch it to produce the library that you'll link to your projects. Command line running to make the library: cd src vi make ./make cp libshm.a $static_lib_path cp libshm.h $include_path Command line running to use the library: cd src gcc -o $prgname $include_path -Wall $srcname.c $static_lib_path/libshm.a ./test Read the doc/shmtool.h.html or the src/shmtool.h to know how many functions this library contain and how to call them and what they do. ---------------------------------------------------------- Copyright (C) 2000 Roberto A. Foglietta Copyright (C) 2002 GEA-Automotive ------------------------------------- This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.