blob: 72925fb9f474cf9f3abcb88171e3dcbb0af5c923 [file] [log] [blame]
Ulf Möller388f2f52000-02-01 01:37:00 +00001=pod
2
3=head1 NAME
4
Ulf Möller4d524e12000-02-24 11:55:57 +00005ERR_remove_state - free a thread's error queue
Ulf Möller388f2f52000-02-01 01:37:00 +00006
7=head1 SYNOPSIS
8
9 #include <openssl/err.h>
10
11 void ERR_remove_state(unsigned long pid);
12
13=head1 DESCRIPTION
14
15ERR_remove_state() frees the error queue associated with thread B<pid>.
16If B<pid> == 0, the current thread will have its error queue removed.
17
18Since error queue data structures are allocated automatically for new
Bodo Möller608c31c2000-05-19 07:54:42 +000019threads, they must be freed when threads are terminated in order to
Ulf Möller388f2f52000-02-01 01:37:00 +000020avoid memory leaks.
21
22=head1 RETURN VALUE
23
24ERR_remove_state() returns no value.
25
26=head1 SEE ALSO
27
28L<err(3)|err(3)>
29
30=head1 HISTORY
31
32ERR_remove_state() is available in all versions of SSLeay and OpenSSL.
33
34=cut