- xbt_os_thread_set_extra_data()
- xbt_os_thread_self()
- xbt_os_thread_self_name()
+ - Drop xbt_ex_display(), use simgrid::xbt::log_exception() instead.
Fixed bugs:
- #261: Document the parameters of parallel execution's constructor
*/
#define DIE_IMPOSSIBLE xbt_die("The Impossible Did Happen (yet again)")
-/** Display an exception */
-XBT_PUBLIC void xbt_ex_display(xbt_ex_t* e);
-
SG_END_DECL()
/** @} */
throw e;
}
-/** @brief shows an exception content and the associated stack if available */
-void xbt_ex_display(xbt_ex_t* e)
-{
- simgrid::xbt::log_exception(xbt_log_priority_critical, "UNCAUGHT EXCEPTION", *e);
-}
-
/** @brief returns a short name for the given exception category */
const char* xbt_ex_catname(xbt_errcat_t cat)
{