add last backwards-compatible version

This commit is contained in:
2021-12-14 00:33:46 -07:00
parent 68b10d413b
commit b0dd3f07f3
335 changed files with 4746 additions and 19627 deletions

View File

@@ -22,21 +22,3 @@ bool abort_callback::waitForEvent( pfc::eventHandle_t evtHandle, double timeOut
default: uBugCheck();
}
}
bool abort_callback::waitForEvent(pfc::event& evt, double timeOut) {
return waitForEvent(evt.get_handle(), timeOut);
}
void abort_callback::waitForEvent(pfc::eventHandle_t evtHandle) {
bool status = waitForEvent(evtHandle, -1); (void)status;
PFC_ASSERT(status); // should never return false
}
void abort_callback::waitForEvent(pfc::event& evt) {
bool status = waitForEvent(evt, -1); (void)status;
PFC_ASSERT(status); // should never return false
}
namespace fb2k {
abort_callback_dummy noAbort;
}