diff options
author | Derrell Lipman <derrell@dworkin.(none)> | 2009-05-13 14:31:40 -0400 |
---|---|---|
committer | Derrell Lipman <derrell@dworkin.(none)> | 2009-05-13 14:37:28 -0400 |
commit | 088906b0641e48c704c5cd529f620023616f561f (patch) | |
tree | b80f75c5ac50ace8e16032066b2bd0d61f84c107 /lib/util/smb_threads.h | |
parent | b9f3a78169be962c4f1fce625ca3a291d9f93c7c (diff) | |
download | samba-088906b0641e48c704c5cd529f620023616f561f.tar.gz samba-088906b0641e48c704c5cd529f620023616f561f.tar.xz samba-088906b0641e48c704c5cd529f620023616f561f.zip |
Make the thread functions a bit easier to use
- Create separate macros for lock and unlock so that it's easier to identify
which request is being made.
- Initialize *ponce in the SMB_THREAD_ONCE macro in the non-thread-safe case,
rather than requiring each init function to determine if it's in the
non-thread-safe case and manually initialize.
Derrell
Diffstat (limited to 'lib/util/smb_threads.h')
-rw-r--r-- | lib/util/smb_threads.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/util/smb_threads.h b/lib/util/smb_threads.h index 809673ab544..9a096167743 100644 --- a/lib/util/smb_threads.h +++ b/lib/util/smb_threads.h @@ -22,8 +22,6 @@ typedef bool smb_thread_once_t; #define SMB_THREAD_ONCE_INIT false -#define SMB_THREAD_ONCE_IS_INITIALIZED(val) ((val) == true) -#define SMB_THREAD_ONCE_INITIALIZE(val) ((val) = true) enum smb_thread_lock_type { SMB_THREAD_LOCK = 1, |