X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/2d21ac55c334faf3a56e5634905ed6987fc787d4..7e4a7d3939db04e70062ae6c7bf24b8c8b2f5a7c:/iokit/Kernel/IOEventSource.cpp?ds=sidebyside diff --git a/iokit/Kernel/IOEventSource.cpp b/iokit/Kernel/IOEventSource.cpp index 0e0dbc8f8..a20232d91 100644 --- a/iokit/Kernel/IOEventSource.cpp +++ b/iokit/Kernel/IOEventSource.cpp @@ -56,6 +56,8 @@ void IOEventSource::closeGate() { workLoop->closeGate(); } bool IOEventSource::tryCloseGate() { return workLoop->tryCloseGate(); } int IOEventSource::sleepGate(void *event, UInt32 type) { return workLoop->sleepGate(event, type); } +int IOEventSource::sleepGate(void *event, AbsoluteTime deadline, UInt32 type) + { return workLoop->sleepGate(event, deadline, type); } void IOEventSource::wakeupGate(void *event, bool oneThread) { workLoop->wakeupGate(event, oneThread); }