From: Arnaud Giersch Date: Mon, 30 Apr 2018 09:46:26 +0000 (+0200) Subject: TRY_FAST never existed officially. X-Git-Tag: sg_v3_7_1~7 X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/commitdiff_plain/404368d69d4124f827b3eae4f231ee61191c65fe TRY_FAST never existed officially. --- 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: