Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Try to fixup the context mess
[simgrid.git] / src / xbt / error.c
1 /* $Id$ */
2
3 /* error - Error handling functions                                         */
4
5 /* Authors: Martin Quinson                                                  */
6 /* Copyright (C) 2001,2002,2003,2004 the OURAGAN project.                   */
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 #include "xbt/sysdep.h"
12
13 /**
14  * \brief Usefull to do nice error repporting messages.
15  *
16  * \param errcode 
17  * \return the printable name of an error code
18  *
19  */
20 const char *xbt_error_name(xbt_error_t errcode)  {
21
22    switch (errcode) {
23       
24     case no_error: return "success";
25     case old_mismatch_error: return "mismatch";
26     case old_system_error: return "system";
27     case old_network_error: return "network";
28     case old_timeout_error: return "timeout";
29     case old_thread_error: return "thread";
30     case old_unknown_error: return "unclassified";
31     default:
32       return "SEVERE ERROR in error repporting module";
33    }
34 }
35
36 XBT_LOG_EXTERNAL_CATEGORY(xbt);
37 XBT_LOG_DEFAULT_CATEGORY(xbt);
38   
39 /**
40  * @brief Kill the program with an error message 
41  * \param msg 
42  *
43  * Things are so messed up that the only thing to do now, is to stop the program.
44  *
45  * The message is handled by a CRITICAL logging request
46  *
47  * If you want to pass arguments to the format, you can always write xbt_assert1(0,"fmt",args)
48  */
49 void xbt_die (const char *msg) {
50    CRITICAL1("%s",msg);
51    xbt_abort();
52 }
53
54 /** @brief Kill the program in silence */
55 void xbt_abort(void) {
56    abort();
57 }