1INITSTATE(3P) POSIX Programmer's Manual INITSTATE(3P)
2
3
4
6 This manual page is part of the POSIX Programmer's Manual. The Linux
7 implementation of this interface may differ (consult the corresponding
8 Linux manual page for details of Linux behavior), or the interface may
9 not be implemented on Linux.
10
12 initstate, random, setstate, srandom - pseudo-random number functions
13
15 #include <stdlib.h>
16
17 char *initstate(unsigned seed, char *state, size_t size);
18 long random(void);
19 char *setstate(const char *state);
20 void srandom(unsigned seed);
21
22
24 The random() function shall use a non-linear additive feedback random-
25 number generator employing a default state array size of 31 long inte‐
26 gers to return successive pseudo-random numbers in the range from 0 to
27 2**31-1. The period of this random-number generator is approximately
28 16 x (2**31-1). The size of the state array determines the period of
29 the random-number generator. Increasing the state array size shall
30 increase the period.
31
32 With 256 bytes of state information, the period of the random-number
33 generator shall be greater than 2**69.
34
35 Like rand(), random() shall produce by default a sequence of numbers
36 that can be duplicated by calling srandom() with 1 as the seed.
37
38 The srandom() function shall initialize the current state array using
39 the value of seed.
40
41 The initstate() and setstate() functions handle restarting and changing
42 random-number generators. The initstate() function allows a state
43 array, pointed to by the state argument, to be initialized for future
44 use. The size argument, which specifies the size in bytes of the state
45 array, shall be used by initstate() to decide what type of random-num‐
46 ber generator to use; the larger the state array, the more random the
47 numbers. Values for the amount of state information are 8, 32, 64, 128,
48 and 256 bytes. Other values greater than 8 bytes are rounded down to
49 the nearest one of these values. If initstate() is called with
50 8<=size<32, then random() shall use a simple linear congruential random
51 number generator. The seed argument specifies a starting point for the
52 random-number sequence and provides for restarting at the same point.
53 The initstate() function shall return a pointer to the previous state
54 information array.
55
56 If initstate() has not been called, then random() shall behave as
57 though initstate() had been called with seed=1 and size=128.
58
59 Once a state has been initialized, setstate() allows switching between
60 state arrays. The array defined by the state argument shall be used for
61 further random-number generation until initstate() is called or set‐
62 state() is called again. The setstate() function shall return a pointer
63 to the previous state array.
64
66 If initstate() is called with size less than 8, it shall return NULL.
67
68 The random() function shall return the generated pseudo-random number.
69
70 The srandom() function shall not return a value.
71
72 Upon successful completion, initstate() and setstate() shall return a
73 pointer to the previous state array; otherwise, a null pointer shall be
74 returned.
75
77 No errors are defined.
78
79 The following sections are informative.
80
82 None.
83
85 After initialization, a state array can be restarted at a different
86 point in one of two ways:
87
88 1. The initstate() function can be used, with the desired seed, state
89 array, and size of the array.
90
91 2. The setstate() function, with the desired state, can be used, fol‐
92 lowed by srandom() with the desired seed. The advantage of using
93 both of these functions is that the size of the state array does
94 not have to be saved once it is initialized.
95
96 Although some implementations of random() have written messages to
97 standard error, such implementations do not conform to
98 IEEE Std 1003.1-2001.
99
100 Issue 5 restored the historical behavior of this function.
101
102 Threaded applications should use erand48(), nrand48(), or jrand48()
103 instead of random() when an independent random number sequence in mul‐
104 tiple threads is required.
105
107 None.
108
110 None.
111
113 drand48(), rand(), the Base Definitions volume of IEEE Std 1003.1-2001,
114 <stdlib.h>
115
117 Portions of this text are reprinted and reproduced in electronic form
118 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
119 -- Portable Operating System Interface (POSIX), The Open Group Base
120 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
121 Electrical and Electronics Engineers, Inc and The Open Group. In the
122 event of any discrepancy between this version and the original IEEE and
123 The Open Group Standard, the original IEEE and The Open Group Standard
124 is the referee document. The original Standard can be obtained online
125 at http://www.opengroup.org/unix/online.html .
126
127
128
129IEEE/The Open Group 2003 INITSTATE(3P)