Messi gli esempi nel testo e usata daemon dove serve nei server
[gapil.git] / sources / LockFile.c
1 /* LockFile.c
2  * 
3  * Copyright (C) 2002 Simone Piccardi
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or (at
8  * your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /*****************************************************************************
20  *
21  * File LockFile.h: 
22  * Function to manipulate lock files.
23  *
24  * Author: S. Piccardi, Dec 2002
25  *
26  * $Id: LockFile.c,v 1.2 2002/12/03 22:30:11 piccardi Exp $
27  *
28  *****************************************************************************/
29 #include <sys/types.h>
30 #include <sys/stat.h>
31 #include <unistd.h>                               /* unix standard functions */
32 #include <fcntl.h>                          /* file control (lock) functions */
33 /*
34  * Function LockFile:
35  *
36  * Create a lockfile of the given pathname.  Fail and exit in case of
37  * error or existence of the same lock file, using unlink do not need
38  * to remove the file.
39  *
40  * Author: Simone Piccardi, Dec. 2002
41  */
42 int LockFile(const char* path_name)
43 {
44     return open(path_name, O_EXCL|O_CREAT);
45 }
46 /*
47  * Function UnlockFile:
48  * Remove a lockfile of the given pathname.
49  *
50  * Author: Simone Piccardi, Dec. 2002
51  */
52 int UnlockFile(const char* path_name) 
53 {
54     return unlink(path_name);
55 }