From 8dc13bbaff422f5f22acb562339c8dc0c7a6774b Mon Sep 17 00:00:00 2001 From: Johann Dreo Date: Thu, 16 Sep 2010 11:29:32 +0200 Subject: [PATCH] important note: we are using wallclock time --- eo/src/eoExceptions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo/src/eoExceptions.h b/eo/src/eoExceptions.h index 7a72f4c5..3e595c06 100644 --- a/eo/src/eoExceptions.h +++ b/eo/src/eoExceptions.h @@ -44,7 +44,7 @@ public: virtual const char* what() const throw() { std::ostringstream ss; - ss << "STOP in eoMaxTimeException: the maximum number of seconds has been reached (" << _elapsed << ")."; + ss << "STOP in eoMaxTimeException: the maximum number of wallclock seconds has been reached (" << _elapsed << ")."; return ss.str().c_str(); }