]> AND Private Git Repository - loba.git/commitdiff
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
TRY_FAST never existed officially.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 30 Apr 2018 09:46:26 +0000 (11:46 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 30 Apr 2018 09:46:26 +0000 (11:46 +0200)
messages.cpp
misc.h

index 93bdc4ee3ff8ba82925e8b72bbbf107d3e90cb7c..39c4f0fb44ebda7afbd04e38ed27106cbc92b5e6 100644 (file)
@@ -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 e58ac61626948597ee9db3f7462eceddfb8292ab..557bed515bd94cee2b57d207b7eebafa897eb9b8 100644 (file)
--- 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: