X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2FGapil.h;h=84e7211535ee7cb7d785af8b96195f5c48ebc653;hp=67dabab0f434f6e601cc51b99c3abc7f0dc50ed5;hb=b8248eaf35d824e8816c76ad9f9561c76d67b915;hpb=e18f3ea57b725bc148f0d3443e384bf5270b2b9f diff --git a/sources/Gapil.h b/sources/Gapil.h index 67dabab..84e7211 100644 --- a/sources/Gapil.h +++ b/sources/Gapil.h @@ -23,7 +23,7 @@ * * Author: S. Piccardi * - * $Id: Gapil.h,v 1.3 2002/12/05 23:38:22 piccardi Exp $ + * $Id: Gapil.h,v 1.4 2003/01/04 17:24:30 piccardi Exp $ * *****************************************************************************/ #include /* IPC semaphore declarations */ @@ -33,6 +33,7 @@ #include /* unix standard functions */ #include /* file control (lock) functions */ #include /* signal handling declarations */ +#include /* directory scan functions */ /* * Definition of semun struct; used to implement a MutexXXXX API To * create a Mutex use an underlaying semaphore and init it; we put @@ -63,6 +64,8 @@ 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 MutexRemove: remove the mutex/semphore. See Mutex.c */ +inline int MutexRemove(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 */ @@ -88,3 +91,8 @@ void HandSigCHLD(int sig); ssize_t SockRead(int fd, void *buf, size_t count); /* Function SockWrite: to read from a socket. See SockWrite.c */ ssize_t SockWrite(int fd, const void *buf, size_t count); +/* + * File miscellaneous + */ +/* Function DirScan: simple scan for a directory */ +int DirScan(char * dirname, int(*compute)(struct dirent *));