summaryrefslogtreecommitdiffstats
path: root/src/include/k5-int.h
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2004-04-30 22:53:38 +0000
committerKen Raeburn <raeburn@mit.edu>2004-04-30 22:53:38 +0000
commita4f8e8baa568d752f3a4efc94827f10bd14bfc95 (patch)
treeb05e000fb67bb9c9df14623fa9416803c6629d97 /src/include/k5-int.h
parent55d99419bbcf82a28e11b74f25d0bfc16ffdfa4a (diff)
downloadkrb5-a4f8e8baa568d752f3a4efc94827f10bd14bfc95.tar.gz
krb5-a4f8e8baa568d752f3a4efc94827f10bd14bfc95.tar.xz
krb5-a4f8e8baa568d752f3a4efc94827f10bd14bfc95.zip
* k5-int.h: Include k5-thread.h.
(struct krb5_rc_st): Add a mutex. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16289 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/k5-int.h')
-rw-r--r--src/include/k5-int.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/k5-int.h b/src/include/k5-int.h
index bd79b6804..a3ebcdd18 100644
--- a/src/include/k5-int.h
+++ b/src/include/k5-int.h
@@ -186,6 +186,9 @@ struct sockaddr;
#endif
#endif
+/* Get mutex support; currently used only for the replay cache. */
+#include "k5-thread.h"
+
/* krb5/krb5.h includes many other .h files in the krb5 subdirectory.
The ones that it doesn't include, we include below. */
@@ -1809,6 +1812,7 @@ struct krb5_rc_st {
krb5_magic magic;
const struct _krb5_rc_ops *ops;
krb5_pointer data;
+ k5_mutex_t lock;
};
typedef struct _krb5_donot_replay {