From 404368d69d4124f827b3eae4f231ee61191c65fe Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Mon, 30 Apr 2018 11:46:26 +0200 Subject: [PATCH] TRY_FAST never existed officially. --- messages.cpp | 2 +- misc.h | 8 -------- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/messages.cpp b/messages.cpp index 93bdc4e..39c4f0f 100644 --- a/messages.cpp +++ b/messages.cpp @@ -72,7 +72,7 @@ bool message_queue::pop(message*& msg, msg_host_t& from, double timeout) if (!queue.try_pop(task)) { xbt_ex_t e; XBT_DEBUG("waiting for a message to come"); - TRY_FAST { + TRY { if (timeout > 0) cond.timedwait(mutex, timeout); else diff --git a/misc.h b/misc.h index e58ac61..557bed5 100644 --- a/misc.h +++ b/misc.h @@ -22,14 +22,6 @@ namespace misc { */ #define XBT_XCLOG(c, p, ...) XBT_CLOG_((*(c)), p, __VA_ARGS__) -/* Use a faster version of TRY if available. - */ -#if defined(TRY_NO_BACKTRACE) -# define TRY_FAST TRY_NO_BACKTRACE -#else -# define TRY_FAST TRY -#endif - #endif // !MISC_H // Local variables: -- 2.39.5