summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/doc/ERR_remove_state.pod
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2007-08-08 21:24:30 +0000
committercvs2svn <admin@example.com>2007-08-08 21:24:30 +0000
commit00378a4a879d3c5f8dd1b4d3ed668a03d950e7a0 (patch)
tree0b22eb3d2e42de512e5aec6d0c57ecbe601eefa5 /src/lib/libcrypto/doc/ERR_remove_state.pod
parent335adc97a1cc8992c990307f49239ee1655b559b (diff)
downloadopenbsd-OPENBSD_4_2_BASE.tar.gz
openbsd-OPENBSD_4_2_BASE.tar.bz2
openbsd-OPENBSD_4_2_BASE.zip
This commit was manufactured by cvs2git to create tag 'OPENBSD_4_2_BASE'.OPENBSD_4_2_BASE
Diffstat (limited to 'src/lib/libcrypto/doc/ERR_remove_state.pod')
-rw-r--r--src/lib/libcrypto/doc/ERR_remove_state.pod34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/lib/libcrypto/doc/ERR_remove_state.pod b/src/lib/libcrypto/doc/ERR_remove_state.pod
deleted file mode 100644
index 72925fb9f4..0000000000
--- a/src/lib/libcrypto/doc/ERR_remove_state.pod
+++ /dev/null
@@ -1,34 +0,0 @@
1=pod
2
3=head1 NAME
4
5ERR_remove_state - free a thread's error queue
6
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
19threads, they must be freed when threads are terminated in order to
20avoid 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