X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2FGapil.h;h=17f07fa56f3a553dc7d3080f199cca0efad07d45;hp=401871c611792106fc9922a6405fb7a0bf642966;hb=750bf2482350e5770a47fbdd76b7eacb88d376ab;hpb=730b0bb045c1794c4f4675605dc106b756e82d69 diff --git a/sources/Gapil.h b/sources/Gapil.h index 401871c..17f07fa 100644 --- a/sources/Gapil.h +++ b/sources/Gapil.h @@ -23,7 +23,7 @@ * * Author: S. Piccardi * - * $Id: Gapil.h,v 1.6 2003/02/02 20:35:33 piccardi Exp $ + * $Id: Gapil.h,v 1.7 2003/02/03 14:27:58 piccardi Exp $ * *****************************************************************************/ #include /* IPC semaphore declarations */ @@ -115,8 +115,8 @@ void * ShmFind(key_t ipc_key, int shm_size); /* Function ShmRemove: remove a SysV shared memory */ int ShmRemove(key_t ipc_key, void * shm_ptr); /* Function CreateShm: create a POSIX shared memory */ -void * CreateShm(char * shm_name, int shm_size, int perm, char fill); +void * CreateShm(char * shm_name, off_t shm_size, int perm, char fill); /* Function FindShm: find an existing POSIX shared memory */ -void * FindShm(char * shm_name, int shm_size); +void * FindShm(char * shm_name, off_t shm_size); /* Function RemoveShm: remove a POSIX shared memory */ int RemoveShm(char * shm_name);