79c281ff0cf9e1b4712dbbe5901c049e75f9fedf
[bbaumbach/samba-autobuild/.git] / source4 / lib / util / mutex.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Samba mutex/lock functions
4    Copyright (C) Andrew Tridgell 2003
5    Copyright (C) James J Myers 2003
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21 #include "includes.h"
22 #include "mutex.h"
23
24 /**
25  * @file
26  * @brief Mutex utility functions
27  */
28          
29 /* the registered mutex handlers */
30 static struct {
31         const char *name;
32         struct mutex_ops ops;
33 } mutex_handlers;
34
35 /* read/write lock routines */
36
37
38 /**
39   register a set of mutex/rwlock handlers. 
40   Should only be called once in the execution of smbd.
41 */
42 BOOL register_mutex_handlers(const char *name, struct mutex_ops *ops)
43 {
44         if (mutex_handlers.name != NULL) {
45                 /* it's already registered! */
46                 DEBUG(2,("mutex handler '%s' already registered - failed '%s'\n", 
47                          mutex_handlers.name, name));
48                 return False;
49         }
50
51         mutex_handlers.name = name;
52         mutex_handlers.ops = *ops;
53
54         DEBUG(2,("mutex handler '%s' registered\n", name));
55         return True;
56 }
57