summaryrefslogtreecommitdiffstats
path: root/src/lib/crypto/yarrow/ylock.h
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2004-10-30 00:56:30 +0000
committerKen Raeburn <raeburn@mit.edu>2004-10-30 00:56:30 +0000
commit78a29e652aeb95c0853c14c9ad4c44fc7952aff9 (patch)
treeeea3a4c08e9745e96e63490f7a49bee3429894c4 /src/lib/crypto/yarrow/ylock.h
parentd77e27a7e5b2bc52b06fb867e4e28826b1d50ebe (diff)
downloadkrb5-78a29e652aeb95c0853c14c9ad4c44fc7952aff9.tar.gz
krb5-78a29e652aeb95c0853c14c9ad4c44fc7952aff9.tar.xz
krb5-78a29e652aeb95c0853c14c9ad4c44fc7952aff9.zip
push yarrow locking down into the yarrow code to reduce contention
This seems to speed up creating a krb5_context a little bit, when it happens a lot in multiple threads. * prng.c (yarrow_lock): Rename to krb5int_yarrow_lock via macro, and change to be non-static. (krb5int_prng_init): Call do_yarrow_init here. (krb5_c_random_add_entropy): Don't call it here. Don't lock the mutex, either. (krb5_c_random_make_octets): Don't lock the mutex. * yarrow/ylock.h: Include k5-thread.h. (krb5int_yarrow_lock): Declare. (LOCK, UNLOCK): Define as macros using the k5_mutex_ macros. ticket: new git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16846 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/crypto/yarrow/ylock.h')
-rw-r--r--src/lib/crypto/yarrow/ylock.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/crypto/yarrow/ylock.h b/src/lib/crypto/yarrow/ylock.h
index 21d3911b77..9c032dc61d 100644
--- a/src/lib/crypto/yarrow/ylock.h
+++ b/src/lib/crypto/yarrow/ylock.h
@@ -11,8 +11,14 @@
* and YARROW_LOCKING on failure
*/
-
+#if 0
static int LOCK( void ) { return (YARROW_OK); }
static int UNLOCK( void ) { return (YARROW_OK); }
+#else
+#include "k5-thread.h"
+extern k5_mutex_t krb5int_yarrow_lock;
+#define LOCK() (k5_mutex_lock(&krb5int_yarrow_lock) ? YARROW_LOCKING : YARROW_OK)
+#define UNLOCK() (k5_mutex_unlock(&krb5int_yarrow_lock) ? YARROW_LOCKING : YARROW_OK)
+#endif
#endif /* YLOCK_H */