diff --git a/capnp/helpers/asyncHelper.h b/capnp/helpers/asyncHelper.h index 7d1b7ba..8b4e1f1 100644 --- a/capnp/helpers/asyncHelper.h +++ b/capnp/helpers/asyncHelper.h @@ -13,11 +13,13 @@ public: virtual bool wait() { GILAcquire gil; PyObject_CallMethod(py_event_port, const_cast("wait"), NULL); + return true; // TODO: get the bool result from python } virtual bool poll() { GILAcquire gil; PyObject_CallMethod(py_event_port, const_cast("poll"), NULL); + return true; // TODO: get the bool result from python } virtual void setRunnable(bool runnable) {