From f0864213a4175cc77cc84abe56831f294a9c7d25 Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Mon, 5 Aug 2013 07:04:50 +0200 Subject: Let's be a bit more explicit about the effects of not catching EAgain. --- src/Task.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/Task.cc') diff --git a/src/Task.cc b/src/Task.cc index eb6cc7f..a4ec5bc 100644 --- a/src/Task.cc +++ b/src/Task.cc @@ -101,6 +101,10 @@ void Balau::Task::coroutine() { Printer::elog(E_TASK, "Stackless task %s at %p is task-switching.", getName(), this); } } + catch (EAgain & e) { + Printer::log(M_ERROR, "Task %s at %p threw an EAgain - you should catch it and yield; the app will crash now", getName(), this); + m_status = FAULTED; + } catch (GeneralException & e) { Printer::log(M_WARNING, "Task %s at %p caused an exception: `%s' - stopping.", getName(), this, e.getMsg()); const char * details = e.getDetails(); -- cgit v1.2.3