Blame man3/drand48_r.3

Packit 7cfc04
.\" Copyright 2003 Walter Harms, 2004 Andries Brouwer <aeb@cwi.nl>.
Packit 7cfc04
.\"
Packit 7cfc04
.\" %%%LICENSE_START(VERBATIM)
Packit 7cfc04
.\" Permission is granted to make and distribute verbatim copies of this
Packit 7cfc04
.\" manual provided the copyright notice and this permission notice are
Packit 7cfc04
.\" preserved on all copies.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Permission is granted to copy and distribute modified versions of this
Packit 7cfc04
.\" manual under the conditions for verbatim copying, provided that the
Packit 7cfc04
.\" entire resulting derived work is distributed under the terms of a
Packit 7cfc04
.\" permission notice identical to this one.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Since the Linux kernel and libraries are constantly changing, this
Packit 7cfc04
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
Packit 7cfc04
.\" responsibility for errors or omissions, or for damages resulting from
Packit 7cfc04
.\" the use of the information contained herein.  The author(s) may not
Packit 7cfc04
.\" have taken the same level of care in the production of this manual,
Packit 7cfc04
.\" which is licensed free of charge, as they might when working
Packit 7cfc04
.\" professionally.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Formatted or processed versions of this manual, if unaccompanied by
Packit 7cfc04
.\" the source, must acknowledge the copyright and authors of this work.
Packit 7cfc04
.\" %%%LICENSE_END
Packit 7cfc04
.\"
Packit 7cfc04
.\" Created 2004-10-31. Text taken from a page by Walter Harms, 2003-09-08
Packit 7cfc04
.\"
Packit 7cfc04
.TH DRAND48_R 3 2017-09-15 "GNU" "Linux Programmer's Manual"
Packit 7cfc04
.SH NAME
Packit 7cfc04
drand48_r, erand48_r, lrand48_r, nrand48_r, mrand48_r, jrand48_r,
Packit 7cfc04
srand48_r, seed48_r, lcong48_r
Packit 7cfc04
\- generate uniformly distributed pseudo-random numbers reentrantly
Packit 7cfc04
.SH SYNOPSIS
Packit 7cfc04
.nf
Packit 7cfc04
.B #include <stdlib.h>
Packit 7cfc04
.PP
Packit 7cfc04
.BI "int drand48_r(struct drand48_data *" buffer ", double *" result );
Packit 7cfc04
.PP
Packit 7cfc04
.BI "int erand48_r(unsigned short " xsubi [3] ","
Packit 7cfc04
.BI "              struct drand48_data *"buffer ", double *" result ");"
Packit 7cfc04
.PP
Packit 7cfc04
.BI "int lrand48_r(struct drand48_data *" buffer ", long int *" result );
Packit 7cfc04
.PP
Packit 7cfc04
.BI "int nrand48_r(unsigned short int " xsubi[3] ","
Packit 7cfc04
.BI "              struct drand48_data *"buffer ", long int *" result ");"
Packit 7cfc04
.PP
Packit 7cfc04
.BI "int mrand48_r(struct drand48_data *" buffer ",long int *" result ");"
Packit 7cfc04
.PP
Packit 7cfc04
.BI "int jrand48_r(unsigned short int " xsubi[3] ","
Packit 7cfc04
.BI "              struct drand48_data *" buffer ", long int *" result ");"
Packit 7cfc04
.PP
Packit 7cfc04
.BI "int srand48_r(long int " seedval ", struct drand48_data *" buffer ");"
Packit 7cfc04
.PP
Packit 7cfc04
.BI "int seed48_r(unsigned short int " seed16v[3] ","
Packit 7cfc04
.BI "             struct drand48_data *" buffer ");"
Packit 7cfc04
.PP
Packit 7cfc04
.BI "int lcong48_r(unsigned short int " param[7] ","
Packit 7cfc04
.BI "              struct drand48_data *" buffer ");"
Packit 7cfc04
.fi
Packit 7cfc04
.PP
Packit 7cfc04
.in -4n
Packit 7cfc04
Feature Test Macro Requirements for glibc (see
Packit 7cfc04
.BR feature_test_macros (7)):
Packit 7cfc04
.in
Packit 7cfc04
.PP
Packit 7cfc04
.ad l
Packit 7cfc04
All functions shown above:
Packit 7cfc04
.\" .BR drand48_r (),
Packit 7cfc04
.\" .BR erand48_r (),
Packit 7cfc04
.\" .BR lrand48_r (),
Packit 7cfc04
.\" .BR nrand48_r (),
Packit 7cfc04
.\" .BR mrand48_r (),
Packit 7cfc04
.\" .BR jrand48_r (),
Packit 7cfc04
.\" .BR srand48_r (),
Packit 7cfc04
.\" .BR seed48_r (),
Packit 7cfc04
.\" .BR lcong48_r ():
Packit 7cfc04
    /* Glibc since 2.19: */ _DEFAULT_SOURCE
Packit 7cfc04
        || /* Glibc versions <= 2.19: */ _SVID_SOURCE || _BSD_SOURCE
Packit 7cfc04
.ad b
Packit 7cfc04
.SH DESCRIPTION
Packit 7cfc04
These functions are the reentrant analogs of the functions described in
Packit 7cfc04
.BR drand48 (3).
Packit 7cfc04
Instead of modifying the global random generator state, they use
Packit 7cfc04
the supplied data
Packit 7cfc04
.IR buffer .
Packit 7cfc04
.PP
Packit 7cfc04
Before the first use, this struct must be initialized, for example,
Packit 7cfc04
by filling it with zeros, or by calling one of the functions
Packit 7cfc04
.BR srand48_r (),
Packit 7cfc04
.BR seed48_r (),
Packit 7cfc04
or
Packit 7cfc04
.BR lcong48_r ().
Packit 7cfc04
.SH RETURN VALUE
Packit 7cfc04
The return value is 0.
Packit 7cfc04
.SH ATTRIBUTES
Packit 7cfc04
For an explanation of the terms used in this section, see
Packit 7cfc04
.BR attributes (7).
Packit 7cfc04
.ad l
Packit 7cfc04
.TS
Packit 7cfc04
allbox;
Packit 7cfc04
lbw25 lb lb
Packit 7cfc04
l l l.
Packit 7cfc04
Interface	Attribute	Value
Packit 7cfc04
T{
Packit 7cfc04
.BR drand48_r (),
Packit 7cfc04
.BR erand48_r (),
Packit 7cfc04
.BR lrand48_r (),
Packit 7cfc04
.BR nrand48_r (),
Packit 7cfc04
.BR mrand48_r (),
Packit 7cfc04
.BR jrand48_r (),
Packit 7cfc04
.BR srand48_r (),
Packit 7cfc04
.BR seed48_r (),
Packit 7cfc04
.BR lcong48_r ()
Packit 7cfc04
T}	Thread safety	MT-Safe race:buffer
Packit 7cfc04
.TE
Packit 7cfc04
.ad
Packit 7cfc04
.SH CONFORMING TO
Packit 7cfc04
These functions are GNU extensions and are not portable.
Packit 7cfc04
.SH SEE ALSO
Packit 7cfc04
.BR drand48 (3),
Packit 7cfc04
.BR rand (3),
Packit 7cfc04
.BR random (3)
Packit 7cfc04
.SH COLOPHON
Packit 7cfc04
This page is part of release 4.15 of the Linux
Packit 7cfc04
.I man-pages
Packit 7cfc04
project.
Packit 7cfc04
A description of the project,
Packit 7cfc04
information about reporting bugs,
Packit 7cfc04
and the latest version of this page,
Packit 7cfc04
can be found at
Packit 7cfc04
\%https://www.kernel.org/doc/man\-pages/.