X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2FDirMonitor.c;fp=sources%2FDirMonitor.c;h=aece529fcef7c3302aa62e3cb160e80f18fc48fe;hp=8a696fe0fbc067e8d1a3b6dd037aa6a715dc158e;hb=5ac64ab2753cbd2198e9b5b17119134b5ef63bc6;hpb=a9150b627f8567902fb2188da4c2ec3df16cf32d diff --git a/sources/DirMonitor.c b/sources/DirMonitor.c index 8a696fe..aece529 100644 --- a/sources/DirMonitor.c +++ b/sources/DirMonitor.c @@ -38,7 +38,7 @@ /* Help printing routine */ void usage(void); -/* computation function for DirScan */ +/* computation function for dir_scan */ int ComputeValues(struct dirent * direntry); void HandSIGTERM(int signo); @@ -118,13 +118,13 @@ int main(int argc, char *argv[]) while (1) { MutexLock(mutex); /* lock shared memory */ memset(shmptr, 0, sizeof(struct DirProp)); /* erase previous data */ - DirScan(argv[1], ComputeValues); /* execute scan */ + dir_scan(argv[1], ComputeValues); /* execute scan */ MutexUnlock(mutex); /* unlock shared memory */ sleep(pause); /* sleep until next watch */ } } /* - * Routine to compute directory properties inside DirScan + * Routine to compute directory properties inside dir_scan */ int ComputeValues(struct dirent * direntry) {