X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4741217071fd45b1526b542ebd8bbc2ab2251728..629bbb0ea28eee8adebd687a0ed72ca9bf110a26:/include/xbt/asserts.h?ds=sidebyside diff --git a/include/xbt/asserts.h b/include/xbt/asserts.h index e51ed8a2cf..455e30883a 100644 --- a/include/xbt/asserts.h +++ b/include/xbt/asserts.h @@ -1,6 +1,6 @@ /* xbt/asserts.h -- assertion mechanism */ -/* Copyright (c) 2005-2022. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2005-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -8,7 +8,6 @@ #ifndef XBT_ASSERTS_H #define XBT_ASSERTS_H -#include "simgrid/modelchecker.h" #include #include #include @@ -49,8 +48,6 @@ XBT_ATTRIB_NORETURN XBT_PUBLIC void xbt_abort(void); * * Unlike the standard assert, xbt_assert is never disabled, even if the macro NDEBUG is defined at compile time. So * it's safe to have a condition with side effects. - * - * In model-checking mode, a failed xbt_assert() is reported as a failed MC_assert(). */ /** @brief The condition which failed will be displayed. @hideinitializer */ @@ -63,8 +60,6 @@ XBT_ATTRIB_NORETURN XBT_PUBLIC void xbt_abort(void); XBT_CCRITICAL(root, __VA_ARGS__); \ if (!xbt_log_no_loc) \ xbt_backtrace_display_current(); \ - if (MC_is_active()) \ - MC_assert(0); \ abort(); \ } \ } while (0)