480ba92cc0936f7f1cf79b20e3151c8423e58e36
[jelmer/samba4-debian.git] / source / lib / 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 /* the registered mutex handlers */
25 static struct {
26         const char *name;
27         struct mutex_ops ops;
28 } mutex_handlers;
29
30 /* read/write lock routines */
31
32
33 /*
34   register a set of mutex/rwlock handlers. 
35   Should only be called once in the execution of smbd.
36 */
37 BOOL register_mutex_handlers(const char *name, struct mutex_ops *ops)
38 {
39         if (mutex_handlers.name != NULL) {
40                 /* it's already registered! */
41                 DEBUG(2,("mutex handler '%s' already registered - failed '%s'\n", 
42                          mutex_handlers.name, name));
43                 return False;
44         }
45
46         mutex_handlers.name = name;
47         mutex_handlers.ops = *ops;
48
49         DEBUG(2,("mutex handler '%s' registered\n", name));
50         return True;
51 }
52