summaryrefslogtreecommitdiffstats
path: root/doc/crypto
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-02-23 18:10:42 +0000
committerUlf Möller <ulf@openssl.org>2000-02-23 18:10:42 +0000
commitbe7ae175602e55859494b6a79cc380b95a989fd1 (patch)
treecf47a29c0b44d88e4a3126dee5b566a6b73547a2 /doc/crypto
parentc1ce32f1bffb208a6ee03c7b1b03ef80988367ea (diff)
threads mapage.
Diffstat (limited to 'doc/crypto')
-rw-r--r--doc/crypto/threads.pod62
1 files changed, 62 insertions, 0 deletions
diff --git a/doc/crypto/threads.pod b/doc/crypto/threads.pod
new file mode 100644
index 0000000000..7e9866c12b
--- /dev/null
+++ b/doc/crypto/threads.pod
@@ -0,0 +1,62 @@
+=pod
+
+=head1 NAME
+
+CRYPTO_set_locking_callback, CRYPTO_set_id_callback - OpenSSL thread support
+
+=head1 SYNOPSIS
+
+ #include <openssl/crypto.h>
+
+ void CRYPTO_set_locking_callback(void (*locking_function)(int mode,
+ int n, const char *file, int line));
+
+ void CRYPTO_set_id_callback(unsigned long (*id_function)(void));
+
+=head1 DESCRIPTION
+
+OpenSSL can safely be used in multi-threaded applications provided
+that two callback functions are set.
+
+locking_function(int mode, int type, const char *file, int line) is
+needed to perform locking on shared data stuctures. Multi-threaded
+applications will crash at random if it is not set.
+
+locking_function() must be able to handle up to B<CRYPTO_NUM_LOCKS>
+different mutex locks. It sets the B<n>th lock if B<mode> &
+B<CRYPTO_LOCK>, and releases it otherwise.
+
+B<file> and B<line> are the file number of the function setting the
+lock. They can be useful for debugging.
+
+id_function(void) is a function that returns a thread ID. It is not
+needed on Windows nor on platforms where getpid() returns a different
+ID for each thread.
+
+=NOTE
+
+You can find out if OpenSSL was configured with thread support:
+
+ #define OPENSSL_THREAD_DEFINES
+ #include <openssl/opensslconf.h>
+ #if defined(THREADS)
+ // thread support enabled
+ #else
+ // no thread support
+ #endif
+
+=head1 EXAMPLES
+
+B<crypto/threads/mttest.c> shows examples of the callback functions on
+Solaris, Irix and Win32.
+
+=head1 HISTORY
+
+CRYPTO_set_locking_callback() and CRYPTO_set_id_callback() are
+available in all versions of SSLeay and OpenSSL.
+
+=head1 SEE ALSO
+
+L<crypto(3)|crypto(3)>
+
+=cut