"Fossies" - the Fresh Open Source Software Archive 
Member "httperf-0.9.0/src/timer.h" (7 Apr 2007, 2473 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 "timer.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 timer_h
36 #define timer_h
37
38 #include <sys/types.h>
39
40 #include <httperf.h>
41
42 #define TIMER_INTERVAL (1.0/1000) /* timer granularity in seconds */
43
44 struct Timer;
45 typedef void (*Timer_Callback) (struct Timer *t, Any_Type arg);
46
47 typedef struct Timer_Queue
48 {
49 struct Timer *next;
50 struct Timer *prev;
51 }
52 Timer_Queue;
53
54 typedef struct Timer
55 {
56 Timer_Queue q; /* must be first member! */
57 u_long delta;
58 Timer_Callback func;
59 Any_Type arg;
60 }
61 Timer;
62
63 extern Time timer_now_forced (void);
64 extern Time timer_now (void);
65
66 extern void timer_init (void);
67 /* Needs to be called at least once every TIMER_INTERVAL: */
68 extern void timer_tick (void);
69
70 extern Timer *timer_schedule (Timer_Callback timeout, Any_Type arg,
71 Time delay);
72 extern void timer_cancel (Timer *t);
73
74 #endif /* timer_h */