Fix typo in documents
[openssl.git] / doc / man3 / OPENSSL_fork_prepare.pod
1 =pod
2
3 =head1 NAME
4
5 OPENSSL_fork_prepare,
6 OPENSSL_fork_parent,
7 OPENSSL_fork_child
8 - OpenSSL fork handlers
9
10 =head1 SYNOPSIS
11
12  #include <openssl/crypto.h>
13
14  void OPENSSL_fork_prepare(void);
15  void OPENSSL_fork_parent(void);
16  void OPENSSL_fork_child(void);
17
18 =head1 DESCRIPTION
19
20 OpenSSL has state that should be reset when a process forks. For example,
21 the entropy pool used to generate random numbers (and therefore encryption
22 keys) should not be shared across multiple programs.
23 The OPENSSL_fork_prepare(), OPENSSL_fork_parent(), and OPENSSL_fork_child()
24 functions are used to reset this internal state.
25
26 Platforms without fork(2) will probably not need to use these functions.
27 Platforms with fork(2) but without pthreads_atfork(3) will probably need
28 to call them manually, as described in the following paragraph.  Platforms
29 such as Linux that have both functions will normally not need to call these
30 functions as the OpenSSL library will do so automatically.
31
32 L<OPENSSL_init_crypto(3)> will register these functions with the appropriate
33 hander, when the B<OPENSSL_INIT_ATFORK> flag is used. For other
34 applications, these functions can be called directly. They should be used
35 according to the calling sequence described by the pthreads_atfork(3)
36 documentation, which is summarized here.  OPENSSL_fork_prepare() should
37 be called before a fork() is done.  After the fork() returns, the parent
38 process should call OPENSSL_fork_parent() and the child process should
39 call OPENSSL_fork_child().
40
41 =head1 SEE ALSO
42
43 L<OPENSSL_init_crypto(3)>
44
45 =head1 HISTORY
46
47 These functions were added in OpenSSL 1.1.1.
48
49 =head1 COPYRIGHT
50
51 Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
52
53 Licensed under the OpenSSL license (the "License").  You may not use
54 this file except in compliance with the License.  You can obtain a copy
55 in the file LICENSE in the source distribution or at
56 L<https://www.openssl.org/source/license.html>.
57
58 =cut