summaryrefslogtreecommitdiffstats
path: root/event.h
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@dside.dyndns.org>2011-07-18 01:07:04 +0200
committerSuren A. Chilingaryan <csa@dside.dyndns.org>2011-07-18 01:07:04 +0200
commit51b53a89896a63d49e7e622133faf58dc681ce13 (patch)
tree0af640d5818651d5bf474b1fbc976f821290694b /event.h
parent71c759e3fa6fb725c51e3800947848cd549222bf (diff)
downloadpcitool-51b53a89896a63d49e7e622133faf58dc681ce13.tar.gz
pcitool-51b53a89896a63d49e7e622133faf58dc681ce13.tar.bz2
pcitool-51b53a89896a63d49e7e622133faf58dc681ce13.tar.xz
pcitool-51b53a89896a63d49e7e622133faf58dc681ce13.zip
Change timeout definition in Events API from struct timespec to pcilib_timeout_t
Diffstat (limited to 'event.h')
-rw-r--r--event.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/event.h b/event.h
index c6432be..7c1f1cd 100644
--- a/event.h
+++ b/event.h
@@ -13,7 +13,7 @@ struct pcilib_event_api_description_s {
int (*stop)(pcilib_context_t *ctx);
int (*trigger)(pcilib_context_t *ctx, pcilib_event_t event, size_t trigger_size, void *trigger_data);
- pcilib_event_id_t (*next_event)(pcilib_context_t *ctx, pcilib_event_t event_mask, const struct timespec *timeout);
+ pcilib_event_id_t (*next_event)(pcilib_context_t *ctx, pcilib_event_t event_mask, pcilib_timeout_t timeout);
void* (*get_data)(pcilib_context_t *ctx, pcilib_event_id_t event_id, pcilib_event_data_type_t data_type, size_t arg_size, void *arg, size_t *size);
int (*return_data)(pcilib_context_t *ctx, pcilib_event_id_t event_id);