X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2FGapil.h;h=a8e786f49a37448cf9fa72fd79be8d41dad2dfbf;hp=84e7211535ee7cb7d785af8b96195f5c48ebc653;hb=c3cf6cfaf8f9ce0722f6afe471a23d1b9ae920c3;hpb=e77571fc3b2e3083b4f819a9626d2be454456fab diff --git a/sources/Gapil.h b/sources/Gapil.h index 84e7211..a8e786f 100644 --- a/sources/Gapil.h +++ b/sources/Gapil.h @@ -23,7 +23,7 @@ * * Author: S. Piccardi * - * $Id: Gapil.h,v 1.4 2003/01/04 17:24:30 piccardi Exp $ + * $Id: Gapil.h,v 1.5 2003/01/07 23:00:34 piccardi Exp $ * *****************************************************************************/ #include /* IPC semaphore declarations */ @@ -66,12 +66,21 @@ inline int MutexLock(int sem_id); inline int MutexUnlock(int sem_id); /* Function MutexRemove: remove the mutex/semphore. See Mutex.c */ inline int MutexRemove(int sem_id); +/* Function CreateMutex: create a mutex (using file locking). See Mutex.c */ +inline int CreateMutex(const char *path_name); +/* Function UnlockMutex: find a mutex (using file locking). See Mutex.c */ +inline int FindMutex(const char *path_name); /* Function LockMutex: acquire a mutex (using file locking). See Mutex.c */ -inline int LockFile(const char* path_name); +inline int LockMutex(int fd); /* Function UnlockMutex: release a mutex (using file locking). See Mutex.c */ -inline int UnlockFile(const char* path_name); - - +inline int UnlockMutex(int fd); +/* Function ReadMutex: read a mutex (using file locking). See Mutex.c */ +inline int ReadMutex(int fd); +/* Function RemoveMutex: remove a mutex (using file locking). See Mutex.c */ +inline int RemoveMutex(const char *path_name); +/* + * Lock files function: to create and destroy lock files + */ /* Function LockFile: create a lock file. See FileLock.c */ inline int LockFile(const char* path_name); /* Function UnlockFile: remove a lock file. See FileLock.c */