Allow IPv6 address entry in tools>ping - Loosens valid character check
[tomato/davidwu.git] / release / src / router / openssl / doc / crypto / ERR_remove_state.pod
blob72925fb9f474cf9f3abcb88171e3dcbb0af5c923
1 =pod
3 =head1 NAME
5 ERR_remove_state - free a thread's error queue
7 =head1 SYNOPSIS
9  #include <openssl/err.h>
11  void ERR_remove_state(unsigned long pid);
13 =head1 DESCRIPTION
15 ERR_remove_state() frees the error queue associated with thread B<pid>.
16 If B<pid> == 0, the current thread will have its error queue removed.
18 Since error queue data structures are allocated automatically for new
19 threads, they must be freed when threads are terminated in order to
20 avoid memory leaks.
22 =head1 RETURN VALUE
24 ERR_remove_state() returns no value.
26 =head1 SEE ALSO
28 L<err(3)|err(3)>
30 =head1 HISTORY
32 ERR_remove_state() is available in all versions of SSLeay and OpenSSL.
34 =cut