From e472b5dd07e78f0180f4fbf5f22fc2fff2ab2548 Mon Sep 17 00:00:00 2001 From: Alexandra Ellwood Date: Thu, 4 Sep 2008 18:43:14 +0000 Subject: CCAPI should only use one pthread key Use k5 thread functions. Also add destructors so if we ever have a way to detect application exit that the pthread key is destroyed. ticket: new git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20705 dc483132-0cff-0310-8789-dd5450dbe970 --- src/include/k5-thread.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/include') diff --git a/src/include/k5-thread.h b/src/include/k5-thread.h index 0450eb277..ad1ad8b73 100644 --- a/src/include/k5-thread.h +++ b/src/include/k5-thread.h @@ -410,6 +410,11 @@ typedef enum { K5_KEY_GSS_KRB5_CCACHE_NAME, K5_KEY_GSS_KRB5_ERROR_MESSAGE, K5_KEY_KIM_ERROR_MESSAGE, +#if defined(__MACH__) && defined(__APPLE__) + K5_KEY_CCAPI_REQUEST_PORT, + K5_KEY_CCAPI_REPLY_STREAM, + K5_KEY_CCAPI_SERVER_DIED, +#endif K5_KEY_MAX } k5_key_t; /* rename shorthand symbols for export */ -- cgit