Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add macros to generate simcalls code
[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), to exchange them.        */
4
5 /* Copyright (c) 2006, 2007, 2009, 2010. The SimGrid Team.
6  * All rights reserved.                                                     */
7
8 /* This program is free software; you can redistribute it and/or modify it
9  * under the terms of the license (GNU LGPL) which comes with this package. */
10
11 #ifndef _XBT_EX_INTERFACE_H_
12 #define _XBT_EX_INTERFACE_H_
13
14 #include "xbt/ex.h"
15 /* The display made by an uncatched exception */
16 void xbt_ex_display(xbt_ex_t * e);
17
18 /* Change raw libc symbols to file names and line numbers */
19 void xbt_ex_setup_backtrace(xbt_ex_t * e);
20
21 #endif                          /* _XBT_EX_INTERFACE_H_ */