"Fossies" - the Fresh Open Source Software Archive 
Member "httperf-0.9.0/src/gen/rate.h" (7 Apr 2007, 2218 Bytes) of package /linux/www/old/httperf-0.9.0.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "rate.h" see the
Fossies "Dox" file reference documentation.
1 /*
2 httperf -- a tool for measuring web server performance
3 Copyright 2000-2007 Hewlett-Packard Company and Contributors listed in
4 AUTHORS file. Originally contributed by David Mosberger-Tang
5
6 This file is part of httperf, a web server performance measurment
7 tool.
8
9 This program is free software; you can redistribute it and/or
10 modify it under the terms of the GNU General Public License as
11 published by the Free Software Foundation; either version 2 of the
12 License, or (at your option) any later version.
13
14 In addition, as a special exception, the copyright holders give
15 permission to link the code of this work with the OpenSSL project's
16 "OpenSSL" library (or with modified versions of it that use the same
17 license as the "OpenSSL" library), and distribute linked combinations
18 including the two. You must obey the GNU General Public License in
19 all respects for all of the code used other than "OpenSSL". If you
20 modify this file, you may extend this exception to your version of the
21 file, but you are not obligated to do so. If you do not wish to do
22 so, delete this exception statement from your version.
23
24 This program is distributed in the hope that it will be useful,
25 but WITHOUT ANY WARRANTY; without even the implied warranty of
26 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27 General Public License for more details.
28
29 You should have received a copy of the GNU General Public License
30 along with this program; if not, write to the Free Software
31 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
32 02110-1301, USA
33 */
34
35 #ifndef rate_h
36 #define rate_h
37
38 #include <httperf.h>
39 #include <timer.h>
40
41 typedef struct Rate_Generator
42 {
43 u_short xsubi[3]; /* used for random number generation */
44 Rate_Info *rate;
45 Time start;
46 Time next_time;
47 Any_Type arg;
48 Timer *timer;
49 int (*tick) (Any_Type arg);
50 int done;
51 Time (*next_interarrival_time) (struct Rate_Generator *rg);
52 }
53 Rate_Generator;
54
55 extern void rate_generator_start (Rate_Generator *rg,
56 Event_Type completion_event);
57 extern void rate_generator_stop (Rate_Generator *rg);
58
59 #endif /* rate_h */