From c5c64bb4aa7eb326efcfdec925c091bfc8b45af2 Mon Sep 17 00:00:00 2001 From: mquinson Date: Sun, 16 Jul 2006 22:59:44 +0000 Subject: [PATCH] Documentation improvement git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2597 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- include/xbt/ex.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/include/xbt/ex.h b/include/xbt/ex.h index dfa3bad958..843cf6d31e 100644 --- a/include/xbt/ex.h +++ b/include/xbt/ex.h @@ -244,18 +244,18 @@ const char * xbt_ex_catname(xbt_errcat_t cat); /** @brief Structure describing an exception */ typedef struct { - char *msg; /**< human readable message; to be freed */ + char *msg; /**< human readable message */ xbt_errcat_t category; /**< category like HTTP (what went wrong) */ int value; /**< like errno (why did it went wrong) */ /* throw point */ - short int remote; /* whether it was raised remotely */ - char *host; /* NULL for localhost; hostname if remote */ + short int remote; /**< whether it was raised remotely */ + char *host; /**< NULL locally thrown exceptions; full hostname if remote ones */ /* FIXME: host should be hostname:port[#thread] */ - char *procname; - long int pid; - char *file; /**< to be freed only for remote exceptions */ - int line; - char *func; /**< to be freed only for remote exceptions */ + char *procname; /**< Name of the process who thrown this */ + long int pid; /**< PID of the process who thrown this */ + char *file; /**< Thrown point */ + int line; /**< Thrown point */ + char *func; /**< Thrown point */ /* Backtrace */ int used; char **bt_strings; /* only filed on display (or before the network propagation) */ -- 2.20.1