Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
make public the function that can display an exception
authorMartin Quinson <martin.quinson@loria.fr>
Wed, 6 Aug 2014 22:53:00 +0000 (00:53 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Wed, 6 Aug 2014 22:53:00 +0000 (00:53 +0200)
include/xbt/ex.h
src/xbt/ex_interface.h

index dd79d32..a72f16b 100644 (file)
@@ -471,6 +471,8 @@ XBT_PUBLIC( void )__xbt_ex_terminate_default(xbt_ex_t * e);
 
 /** @brief Exception destructor */
 XBT_PUBLIC(void) xbt_ex_free(xbt_ex_t e);
+/** @brief The display made by an exception that is not catched */
+XBT_PUBLIC(void) xbt_ex_display(xbt_ex_t * e);
 
 /** @brief Shows a backtrace of the current location */
 XBT_PUBLIC(void) xbt_backtrace_display_current(void);
index 3abaede..4f510f6 100644 (file)
@@ -12,8 +12,6 @@
 #define _XBT_EX_INTERFACE_H_
 
 #include "xbt/ex.h"
-/* The display made by an uncatched exception */
-void xbt_ex_display(xbt_ex_t * e);
 
 /* Change raw libc symbols to file names and line numbers */
 void xbt_ex_setup_backtrace(xbt_ex_t * e);