ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages
|
This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles. This manual page is associated with the Mac OS X developer tools. The software or headers described may not be present on your Mac OS X installation until you install the developer tools package. This package is available on your Mac OS X installation DVD, and the latest versions can be downloaded from developer.apple.com. For more information about the manual page format, see the manual page for manpages(5). |
ERR_remove_state(3) OpenSSL ERR_remove_state(3) NAME ERR_remove_state - free a thread's error queue SYNOPSIS #include <openssl/err.h> void ERR_remove_state(unsigned long pid); DESCRIPTION ERR_remove_state() frees the error queue associated with thread pid. If pid == 0, the current thread will have its error queue removed. Since error queue data structures are allocated automatically for new threads, they must be freed when threads are terminated in order to avoid memory leaks. RETURN VALUE ERR_remove_state() returns no value. SEE ALSO err(3) HISTORY ERR_remove_state() is available in all versions of SSLeay and OpenSSL. 0.9.7l 2000-05-19 ERR_remove_state(3) |
|