diff options
author | Geoff Thorpe <geoff@openssl.org> | 2008-08-06 15:54:15 +0000 |
---|---|---|
committer | Geoff Thorpe <geoff@openssl.org> | 2008-08-06 15:54:15 +0000 |
commit | 4c3296960de32e5abfbb8f4703a2ce624d82669f (patch) | |
tree | f603740bcbf0e3cde6008cead9586e5b4edbdc5b /FAQ | |
parent | 96826bfc84c63207b720543443626029946a0fc7 (diff) | |
download | openssl-new-4c3296960de32e5abfbb8f4703a2ce624d82669f.tar.gz |
Remove the dual-callback scheme for numeric and pointer thread IDs,
deprecate the original (numeric-only) scheme, and replace with the
CRYPTO_THREADID object. This hides the platform-specifics and should reduce
the possibility for programming errors (where failing to explicitly check
both thread ID forms could create subtle, platform-specific bugs).
Thanks to Bodo, for invaluable review and feedback.
Diffstat (limited to 'FAQ')
-rw-r--r-- | FAQ | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -717,9 +717,7 @@ file. Multi-threaded applications must provide two callback functions to OpenSSL by calling CRYPTO_set_locking_callback() and -CRYPTO_set_id_callback(). (For OpenSSL 0.9.9 or later, the new -function CRYPTO_set_idptr_callback() may be used in place of -CRYPTO_set_id_callback().) This is described in the threads(3) +CRYPTO_set_id_callback(). This is described in the threads(3) manpage. * I've compiled a program under Windows and it crashes: why? |