Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix
[simgrid.git] / src / xbt / ex_interface.h
index ad82bd2..3c7599e 100644 (file)
@@ -1,9 +1,9 @@
-/* $Id$ */
-
 /* ex -- exception handling                                                 */
-/* This file is not to be loaded from anywhere but ex.c                     */
+/* This file is to loaded in any location defining exception handlers       */
+/* (such as context.c), to exchange them.        */
 
-/* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
+/* Copyright (c) 2006-2007, 2009-2010, 2012-2014. The SimGrid Team.
+ * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 #ifndef _XBT_EX_INTERFACE_H_
 #define _XBT_EX_INTERFACE_H_
 
-XBT_PUBLIC(void) xbt_ex_setup_backtrace(xbt_ex_t *e);
+#include <cstddef>
+
+#include <vector>
+#include <string>
+
+#include "xbt/base.h"
+#include "xbt/backtrace.h"
+
+namespace simgrid {
+namespace xbt {
 
-#endif  /* _XBT_EX_INTERFACE_H_ */
+}
+}
 
+#endif                          /* _XBT_EX_INTERFACE_H_ */