diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-02-10 07:18:00 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:09:40 -0500 |
commit | 6aa6dce3f7c4303d184b3098fbf4619e49a27e45 (patch) | |
tree | d028e15ab6a0d2b222ef4e582b9053f451cbb696 /source4/include | |
parent | 501379431c7fc6c9a78e74eca43b208184debce6 (diff) | |
download | samba-6aa6dce3f7c4303d184b3098fbf4619e49a27e45.tar.gz samba-6aa6dce3f7c4303d184b3098fbf4619e49a27e45.tar.bz2 samba-6aa6dce3f7c4303d184b3098fbf4619e49a27e45.zip |
r5306: removed all the unused mutex functions from mutex.c. When (if?) we
decide to reinstate the mutex code for the threads process model, I'd
like to do it a little differently. At least this gets it out of
includes.h for now.
(This used to be commit cfee0fb02e10add22b6c436bdfa95d1a8f5f3def)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/includes.h | 1 | ||||
-rw-r--r-- | source4/include/mutex.h | 12 | ||||
-rw-r--r-- | source4/include/structs.h | 2 |
3 files changed, 3 insertions, 12 deletions
diff --git a/source4/include/includes.h b/source4/include/includes.h index b31ba4d840..3387102393 100644 --- a/source4/include/includes.h +++ b/source4/include/includes.h @@ -124,7 +124,6 @@ extern int errno; #include "smb.h" #include "byteorder.h" #include "module.h" -#include "mutex.h" #include "librpc/ndr/libndr.h" #include "librpc/gen_ndr/ndr_misc.h" #include "librpc/gen_ndr/ndr_dcerpc.h" diff --git a/source4/include/mutex.h b/source4/include/mutex.h index 21e4f9f8a5..c0b7d26744 100644 --- a/source4/include/mutex.h +++ b/source4/include/mutex.h @@ -21,16 +21,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* To add a new mutex, add it to enum mutex_id - */ -enum mutex_id { MUTEX_SMBD, /* global smbd lock */ - MUTEX_TALLOC, /* global talloc.c lock */ - MUTEX_DEBUG, /* global debug.c lock */ - MUTEX_TANK, /* vfs_tank lock */ - - MUTEX_MAX /* this MUST be kept last */ -}; - /* To add a new read/write lock, add it to enum rwlock_id */ enum rwlock_id { RWLOCK_SMBD, /* global smbd lock */ @@ -55,7 +45,7 @@ enum rwlock_id { RWLOCK_SMBD, /* global smbd lock */ /* this null typedef ensures we get the types right and avoids the pitfalls of void* */ -typedef struct { +typedef struct smb_mutex { void *mutex; } smb_mutex_t; typedef struct { diff --git a/source4/include/structs.h b/source4/include/structs.h index 29d552d3cc..034ad20b64 100644 --- a/source4/include/structs.h +++ b/source4/include/structs.h @@ -172,3 +172,5 @@ struct stream_server_ops; struct nbtd_server; struct nbtd_interface; + +struct mutex_ops; |