This website works better with JavaScript.
Home
Explore
Help
Sign In
kris
/
httperf
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Removed timer interval from public timer.h header and duplicated Timer_Callback to allow timer.c to build without needing #include <timer.h>
ahc_fix_select
tedbullock
17 years ago
parent
70c255dc95
commit
86d75c8bed
2 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
httperf/src/timer.c
+0
-2
httperf/src/timer.h
+ 3
- 1
httperf/src/timer.c
View File
@@ -41,11 +41,13 @@
#include <heap.h>
#include <queue.h>
#include <httperf.h>
#include <timer.h>
#define HEAP_SIZE 4096
#define WHEEL_SIZE 4096
#define TIMER_INTERVAL (1.0/1000) /* timer granularity in seconds */
typedef void (*Timer_Callback) (struct Timer * t, Any_Type arg);
static Time now;
static Time next_tick;
+ 0
- 2
httperf/src/timer.h
View File
@@ -32,8 +32,6 @@
#ifndef timer_h
#define timer_h
#define TIMER_INTERVAL (1.0/1000) /* timer granularity in seconds */
struct Timer;
typedef void (*Timer_Callback) (struct Timer * t, Any_Type arg);
Write
Preview
Loading…
Cancel
Save