X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2FGapil.h;h=67dabab0f434f6e601cc51b99c3abc7f0dc50ed5;hp=00dc3a67f6d62523b23351ca27e6eba807cc82c5;hb=2e096eb5d1df57ce4b887630bdc81526c455b45b;hpb=6483a787322c614bc6282a0bf0ee001f1bf54b44 diff --git a/sources/Gapil.h b/sources/Gapil.h index 00dc3a6..67dabab 100644 --- a/sources/Gapil.h +++ b/sources/Gapil.h @@ -1,3 +1,21 @@ +/* Gapil.h + * + * Copyright (C) 2002 Simone Piccardi + * + * 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, or (at + * your option) any later version. + * + * 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. + */ /***************************************************************************** * * File Gapil.h: @@ -5,7 +23,7 @@ * * Author: S. Piccardi * - * $Id: Gapil.h,v 1.1 2002/12/03 11:06:05 piccardi Exp $ + * $Id: Gapil.h,v 1.3 2002/12/05 23:38:22 piccardi Exp $ * *****************************************************************************/ #include /* IPC semaphore declarations */ @@ -45,10 +63,15 @@ inline int MutexRead(int sem_id); inline int MutexLock(int sem_id); /* Function MutexUnlock: to unlock a mutex/semaphore. See Mutex.c */ inline int MutexUnlock(int sem_id); +/* Function LockMutex: acquire a mutex (using file locking). See Mutex.c */ +inline int LockFile(const char* path_name); +/* Function UnlockMutex: release a mutex (using file locking). See Mutex.c */ +inline int UnlockFile(const char* path_name); + -/* Function LockFile: create a lock file. See FileLock.c*/ +/* 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*/ +/* Function UnlockFile: remove a lock file. See FileLock.c */ inline int UnlockFile(const char* path_name); /* * Signal Handling Functions