1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
/*++
/* NAME
/* rand_sleep 3
/* SUMMARY
/* sleep for randomized interval
/* SYNOPSIS
/* #include <iostuff.h>
/*
/* void rand_sleep(delay, variation)
/* unsigned delay;
/* unsigned variation;
/* DESCRIPTION
/* rand_sleep() blocks the current process for an amount of time
/* pseudo-randomly chosen from the interval (delay +- variation/2).
/*
/* Arguments:
/* .IP delay
/* Time to sleep in microseconds.
/* .IP variation
/* Variation in microseconds; must not be larger than delay.
/* DIAGNOSTICS
/* Panic: interface violation. All system call errors are fatal.
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Wietse Venema
/* IBM T.J. Watson Research
/* P.O. Box 704
/* Yorktown Heights, NY 10598, USA
/*--*/
/* System library. */
#include <sys_defs.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
/* Utility library. */
#include <msg.h>
#include <myrand.h>
#include <iostuff.h>
/* rand_sleep - block for random time */
void rand_sleep(unsigned delay, unsigned variation)
{
const char *myname = "rand_sleep";
unsigned usec;
/*
* Sanity checks.
*/
if (delay == 0)
msg_panic("%s: bad delay %d", myname, delay);
if (variation > delay)
msg_panic("%s: bad variation %d", myname, variation);
/*
* Use the semi-crappy random number generator.
*/
usec = (delay - variation / 2) + variation * (double) myrand() / RAND_MAX;
doze(usec);
}
#ifdef TEST
#include <msg_vstream.h>
int main(int argc, char **argv)
{
int delay;
int variation;
msg_vstream_init(argv[0], VSTREAM_ERR);
if (argc != 3)
msg_fatal("usage: %s delay variation", argv[0]);
if ((delay = atoi(argv[1])) <= 0)
msg_fatal("bad delay: %s", argv[1]);
if ((variation = atoi(argv[2])) < 0)
msg_fatal("bad variation: %s", argv[2]);
rand_sleep(delay * 1000000, variation * 1000000);
exit(0);
}
#endif
|