Logo AND Algorithmique Numérique Distribuée

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