summaryrefslogtreecommitdiff
path: root/src/daemon/dlt_daemon_event_handler_types.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon/dlt_daemon_event_handler_types.h')
-rw-r--r--src/daemon/dlt_daemon_event_handler_types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/daemon/dlt_daemon_event_handler_types.h b/src/daemon/dlt_daemon_event_handler_types.h
index a2945b4..99a1217 100644
--- a/src/daemon/dlt_daemon_event_handler_types.h
+++ b/src/daemon/dlt_daemon_event_handler_types.h
@@ -27,7 +27,7 @@
* \file dlt_daemon_event_handler_types.h
*/
-#include <sys/epoll.h>
+#include <sys/poll.h>
#include "dlt_daemon_connection_types.h"
@@ -50,10 +50,10 @@ typedef enum {
DLT_TIMER_UNKNOWN
} DltTimers;
-#define DLT_EPOLL_MAX_EVENTS 10
typedef struct {
- int epfd;
- struct epoll_event events[DLT_EPOLL_MAX_EVENTS];
+ struct pollfd *pfd;
+ nfds_t nfds;
+ nfds_t max_nfds;
DltConnection *connections;
} DltEventHandler;