summaryrefslogtreecommitdiff
path: root/include/libcamera/internal/event_dispatcher_poll.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libcamera/internal/event_dispatcher_poll.h')
-rw-r--r--include/libcamera/internal/event_dispatcher_poll.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/libcamera/internal/event_dispatcher_poll.h b/include/libcamera/internal/event_dispatcher_poll.h
index 1f073861..3c909966 100644
--- a/include/libcamera/internal/event_dispatcher_poll.h
+++ b/include/libcamera/internal/event_dispatcher_poll.h
@@ -41,16 +41,16 @@ private:
EventNotifier *notifiers[3];
};
+ int poll(std::vector<struct pollfd> *pollfds);
+ void processInterrupt(const struct pollfd &pfd);
+ void processNotifiers(const std::vector<struct pollfd> &pollfds);
+ void processTimers();
+
std::map<int, EventNotifierSetPoll> notifiers_;
std::list<Timer *> timers_;
int eventfd_;
bool processingEvents_;
-
- int poll(std::vector<struct pollfd> *pollfds);
- void processInterrupt(const struct pollfd &pfd);
- void processNotifiers(const std::vector<struct pollfd> &pollfds);
- void processTimers();
};
} /* namespace libcamera */