aboutsummaryrefslogtreecommitdiff
path: root/util/mini_event.h
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2014-05-14 18:43:20 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2014-05-14 18:43:20 +0000
commitf61d78fb42d2662643e7f0dbdcb97adbc2589dbc (patch)
tree9b915379eafaa12682f45d6cb1f41e94fcb12a36 /util/mini_event.h
parent697291b66c481c617cf9875497e2189bc4a4b096 (diff)
downloadsrc-f61d78fb42d2662643e7f0dbdcb97adbc2589dbc.tar.gz
src-f61d78fb42d2662643e7f0dbdcb97adbc2589dbc.zip
import unbound 1.4.21vendor/unbound/1.4.21
Notes
Notes: svn path=/vendor/unbound/dist/; revision=266075 svn path=/vendor/unbound/1.4.21/; revision=266076; tag=vendor/unbound/1.4.21
Diffstat (limited to 'util/mini_event.h')
-rw-r--r--util/mini_event.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/mini_event.h b/util/mini_event.h
index 248468ada84a..b04419123f8d 100644
--- a/util/mini_event.h
+++ b/util/mini_event.h
@@ -103,7 +103,7 @@ struct event_base
/** if we need to exit */
int need_to_exit;
/** where to store time in seconds */
- uint32_t* time_secs;
+ time_t* time_secs;
/** where to store time in microseconds */
struct timeval* time_tv;
};
@@ -134,7 +134,7 @@ struct event {
/* function prototypes (some are as they appear in event.h) */
/** create event base */
-void *event_init(uint32_t* time_secs, struct timeval* time_tv);
+void *event_init(time_t* time_secs, struct timeval* time_tv);
/** get version */
const char *event_get_version(void);
/** get polling method, select */