summaryrefslogtreecommitdiff
path: root/p11-kit/private.h
diff options
context:
space:
mode:
Diffstat (limited to 'p11-kit/private.h')
-rw-r--r--p11-kit/private.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/p11-kit/private.h b/p11-kit/private.h
index 61cd142..7348e43 100644
--- a/p11-kit/private.h
+++ b/p11-kit/private.h
@@ -37,48 +37,9 @@
#include "compat.h"
#include "pkcs11.h"
-#include "util.h"
-
-extern mutex_t _p11_mutex;
-
-#define P11_MAX_MESSAGE 512
-
-typedef struct {
- char message[P11_MAX_MESSAGE];
-#ifdef OS_WIN32
- void *last_error;
-#endif
-} p11_local;
-
-#define _p11_lock() _p11_mutex_lock (&_p11_mutex);
-
-#define _p11_unlock() _p11_mutex_unlock (&_p11_mutex);
-
-void _p11_message (const char* msg,
- ...) GNUC_PRINTF (1, 2);
-
-p11_local * _p11_library_get_thread_local (void);
-
-#ifdef OS_WIN32
-
-/* No implementation, because done by DllMain */
-#define _p11_library_init_once()
-
-#else /* !OS_WIN32 */
-
-extern pthread_once_t _p11_once;
-
-#define _p11_library_init_once() \
- pthread_once (&_p11_once, _p11_library_init);
-
-#endif /* !OS_WIN32 */
extern CK_FUNCTION_LIST _p11_proxy_function_list;
-void _p11_library_init (void);
-
-void _p11_library_uninit (void);
-
CK_FUNCTION_LIST_PTR_PTR _p11_kit_registered_modules_unlocked (void);
CK_RV _p11_kit_initialize_registered_unlocked_reentrant (void);
@@ -91,8 +52,6 @@ CK_RV _p11_load_config_files_unlocked (const char *sys
const char *user_conf,
int *user_mode);
-void _p11_kit_clear_message (void);
-
void _p11_kit_default_message (CK_RV rv);
const char * _p11_get_progname_unlocked (void);