CPU: Wrong CPU Load %.
[tomato.git] / release / src / router / ppp / pppd / magic.c
blobe1cd94004231a2b532af051fc11abc3d2ca54e0e
1 /*
2 * magic.c - PPP Magic Number routines.
4 * Copyright (c) 1989 Carnegie Mellon University.
5 * All rights reserved.
7 * Redistribution and use in source and binary forms are permitted
8 * provided that the above copyright notice and this paragraph are
9 * duplicated in all such forms and that any documentation,
10 * advertising materials, and other materials related to such
11 * distribution and use acknowledge that the software was developed
12 * by Carnegie Mellon University. The name of the
13 * University may not be used to endorse or promote products derived
14 * from this software without specific prior written permission.
15 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
17 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
20 #define RCSID "$Id: magic.c,v 1.1.1.4 2003/10/14 08:09:53 sparq Exp $"
22 #include <stdio.h>
23 #include <unistd.h>
24 #include <sys/types.h>
25 #include <sys/time.h>
27 #include <pppd.h>
28 #include "magic.h"
30 static const char rcsid[] = RCSID;
32 extern long mrand48 __P((void));
33 extern void srand48 __P((long));
36 * magic_init - Initialize the magic number generator.
38 * Attempts to compute a random number seed which will not repeat.
39 * The current method uses the current hostid, current process ID
40 * and current time, currently.
42 void
43 magic_init()
45 long seed;
46 struct timeval t;
48 gettimeofday(&t, NULL);
49 seed = get_host_seed() ^ t.tv_sec ^ t.tv_usec ^ getpid();
50 srand48(seed);
54 * magic - Returns the next magic number.
56 u_int32_t
57 magic()
59 return (u_int32_t) mrand48();
62 #ifdef NO_DRAND48
64 * Substitute procedures for those systems which don't have
65 * drand48 et al.
68 double
69 drand48()
71 return (double)random() / (double)0x7fffffffL; /* 2**31-1 */
74 long
75 mrand48()
77 return random();
80 void
81 srand48(seedval)
82 long seedval;
84 srandom((int)seedval);
87 #endif