Aggiornamento note copyright
[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  *****************************************************************************/
27 #include <sys/types.h>   /* primitive system data types */
28 #include <sys/stat.h>    /* file characteristics constants and functions */
29 #include <unistd.h>      /* unix standard library */
30 #include <fcntl.h>       /* file control functions */
31 /*
32  * Function LockFile:
33  *
34  * Create a lockfile of the given pathname.  Fail and exit in case of
35  * error or existence of the same lock file, using unlink do not need
36  * to remove the file.
37  *
38  * Author: Simone Piccardi, Dec. 2002
39  */
40 int LockFile(const char* path_name)
41 {
42     return open(path_name, O_EXCL|O_CREAT);
43 }
44 /*
45  * Function UnlockFile:
46  * Remove a lockfile of the given pathname.
47  *
48  * Author: Simone Piccardi, Dec. 2002
49  */
50 int UnlockFile(const char* path_name) 
51 {
52     return unlink(path_name);
53 }