diff options
Diffstat (limited to 'src/lib/libc/stdlib/rand.3')
| -rw-r--r-- | src/lib/libc/stdlib/rand.3 | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/src/lib/libc/stdlib/rand.3 b/src/lib/libc/stdlib/rand.3 index 32d32761f1..28496ec12a 100644 --- a/src/lib/libc/stdlib/rand.3 +++ b/src/lib/libc/stdlib/rand.3 | |||
| @@ -33,7 +33,7 @@ | |||
| 33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 34 | .\" SUCH DAMAGE. | 34 | .\" SUCH DAMAGE. |
| 35 | .\" | 35 | .\" |
| 36 | .\" $OpenBSD: rand.3,v 1.4 1998/07/05 19:54:22 millert Exp $ | 36 | .\" $OpenBSD: rand.3,v 1.5 1998/11/20 11:18:50 d Exp $ |
| 37 | .\" | 37 | .\" |
| 38 | .Dd June 29, 1991 | 38 | .Dd June 29, 1991 |
| 39 | .Dt RAND 3 | 39 | .Dt RAND 3 |
| @@ -48,6 +48,8 @@ | |||
| 48 | .Fn srand "unsigned seed" | 48 | .Fn srand "unsigned seed" |
| 49 | .Ft int | 49 | .Ft int |
| 50 | .Fn rand void | 50 | .Fn rand void |
| 51 | .Ft int | ||
| 52 | .Fn rand_r "unsigned int *seed" | ||
| 51 | .Sh DESCRIPTION | 53 | .Sh DESCRIPTION |
| 52 | .Bf -symbolic | 54 | .Bf -symbolic |
| 53 | These interfaces are obsoleted by | 55 | These interfaces are obsoleted by |
| @@ -73,6 +75,14 @@ with the same seed value. | |||
| 73 | .Pp | 75 | .Pp |
| 74 | If no seed value is provided, the functions are automatically | 76 | If no seed value is provided, the functions are automatically |
| 75 | seeded with a value of 1. | 77 | seeded with a value of 1. |
| 78 | .Pp | ||
| 79 | The | ||
| 80 | .Fn rand_r | ||
| 81 | is a thread-safe version of | ||
| 82 | .Fn rand . | ||
| 83 | Storage for the seed must be provided through the | ||
| 84 | .Ar seed | ||
| 85 | argument, and needs to have been initialized by the caller. | ||
| 76 | .Sh SEE ALSO | 86 | .Sh SEE ALSO |
| 77 | .Xr arc4random 3 , | 87 | .Xr arc4random 3 , |
| 78 | .Xr rand48 3 , | 88 | .Xr rand48 3 , |
| @@ -85,3 +95,10 @@ and | |||
| 85 | functions | 95 | functions |
| 86 | conform to | 96 | conform to |
| 87 | .St -ansiC . | 97 | .St -ansiC . |
| 98 | .Pp | ||
| 99 | The | ||
| 100 | .Fn rand_r | ||
| 101 | function | ||
| 102 | conforms to ISO/IEC 9945-1 ANSI/IEEE | ||
| 103 | .Pq Dq Tn POSIX | ||
| 104 | Std 1003.1c Draft 10. | ||
