Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill old $Id$ command dating from CVS
[simgrid.git] / src / xbt / ex_interface.h
1 /* ex -- exception handling                                                 */
2 /* This file is to loaded in any location defining exception handlers       */
3 /* (such as context.c) or in gras transport layer, to exchange them.        */
4
5 /* Copyright (c) 2003, 2004, 2007 Martin Quinson. All rights reserved.      */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #ifndef _XBT_EX_INTERFACE_H_
11 #define _XBT_EX_INTERFACE_H_
12
13 #include "xbt/ex.h"
14 /* The display made by an uncatched exception */
15 void xbt_ex_display(xbt_ex_t * e);
16
17 /* Change raw libc symbols to file names and line numbers */
18 void xbt_ex_setup_backtrace(xbt_ex_t * e);
19
20 #endif /* _XBT_EX_INTERFACE_H_ */