From: Wolfgang Bangerth Date: Thu, 10 Jan 2002 10:22:35 +0000 (+0000) Subject: new exception stuff X-Git-Tag: v8.0.0~18462 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=29fa07416eb64786679cb47e8ae183a0c7722d3f;p=dealii.git new exception stuff git-svn-id: https://svn.dealii.org/trunk@5373 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/news/2001/c-3-2.html b/deal.II/doc/news/2001/c-3-2.html index 49fecc549c..b585ed0fb4 100644 --- a/deal.II/doc/news/2001/c-3-2.html +++ b/deal.II/doc/news/2001/c-3-2.html @@ -107,13 +107,28 @@ documentation, etc.

base

    +
  1. + New: the deal_II_exceptions::set_additional_assert_output + function allows to set additional output to be printed upon + triggering an Assert() call. This + is helpful for parallel applications where you only see the + text of the message but do not know from which cluster node it + stems. +
    + (WB 2002/01/10) +

    +
  2. Changed: when an assertion fails in the Assert() function, the program is usually aborted. Don't abort it any more if there is an active C++ - somewhere since we would lose its message if we aborted the - program. In that case only report the error and write out an - indication why we do not abort the program any more. + exception somewhere since we would lose its message if we + aborted the program. In that case only report the error and + write out an indication why we do not abort the program any + more. On the other hand, also suppress output of further failed + Assert() calls, since they often + are follow-ups of the first one.
    (WB 2002/01/09)