Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Do not require doxygen in maintainer mode
[simgrid.git] / src / xbt / backtrace_dummy.c
1 /* $Id: ex_interface.h 3782 2007-07-14 09:11:06Z mquinson $ */
2
3 /* backtrace_dummy -- stubs of this module for non-supported archs          */
4
5 /* Copyright (c) 2003-2008, Da SimGrid team. 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 #include "xbt/ex.h"
11 #include "xbt_modinter.h"
12
13 /* Module creation/destruction */
14 void xbt_backtrace_init(void) { }
15 void xbt_backtrace_exit(void) { }
16
17 /* create a backtrace in the given exception */
18 void xbt_backtrace_current(xbt_ex_t *e)  { }
19
20 /* prepare a backtrace for display */
21 void xbt_ex_setup_backtrace(xbt_ex_t *e)  { }
22