summaryrefslogtreecommitdiff
path: root/src/ipa/raspberrypi/controller/controller.h
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2022-09-28 14:47:29 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2022-09-30 21:51:20 +0300
commit3440740ff3291e87867edd2b4c217ee88173ee28 (patch)
treeb8c4206c3d54af641dca988b34df6bed6cf4e8cc /src/ipa/raspberrypi/controller/controller.h
parenteff6874e62547e174ea7c54facfce24b2804f312 (diff)
utils: raspberrypi: Add missing SPDX header to delayedctrls_parse.py
The delayedctrls_parse.py script is missing license information. Add an SPDX header to fix it. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'src/ipa/raspberrypi/controller/controller.h')
0 files changed, 0 insertions, 0 deletions
n class="hl opt"><void()> &func); void addFdEvent(int fd, EventType type, const std::function<void()> &handler); using duration = std::chrono::steady_clock::duration; void addTimerEvent(const std::chrono::microseconds period, const std::function<void()> &handler); private: struct Event { Event(const std::function<void()> &callback); ~Event(); static void dispatch(int fd, short events, void *arg); std::function<void()> callback_; struct event *event_; }; static EventLoop *instance_; struct event_base *base_; int exitCode_;