Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move the asserts out of error.h in order to kill it afterward
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Sun, 7 Aug 2005 14:33:56 +0000 (14:33 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Sun, 7 Aug 2005 14:33:56 +0000 (14:33 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1605 48e7efb5-ca39-0410-a469-dd3cf9ba447f

include/Makefile.am
include/xbt.h
include/xbt/asserts.h [new file with mode: 0644]
include/xbt/error.h
include/xbt/sysdep.h

index 791f6cb..417ef3f 100644 (file)
@@ -1,9 +1,9 @@
 include_HEADERS = gras.h xbt.h
 nobase_include_HEADERS = \
-        xbt/ex.h \
        xbt/misc.h \
        xbt/sysdep.h \
-       xbt/log.h xbt/error.h \
+       xbt/asserts.h xbt/error.h xbt/ex.h \
+       xbt/log.h \
        xbt/module.h \
        xbt/dynar.h xbt/dict.h xbt/set.h \
        xbt/heap.h \
index 08d5228..8be0e35 100644 (file)
@@ -14,6 +14,7 @@
 #include <xbt/sysdep.h>
 
 #include <xbt/error.h>
+#include <xbt/asserts.h>
 #include <xbt/log.h>
 
 #include <xbt/module.h>
diff --git a/include/xbt/asserts.h b/include/xbt/asserts.h
new file mode 100644 (file)
index 0000000..479eb60
--- /dev/null
@@ -0,0 +1,60 @@
+/* $Id$ */
+/*  xbt/asserts.h -- assertion mecanism                                     */
+
+/* Copyright (c) 2004,2005 Martin Quinson. 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_ASSERTS_H
+#define _XBT_ASSERTS_H
+
+#include "xbt/misc.h"
+  
+BEGIN_DECL()
+
+/**
+ * \name 4. assert macro familly
+ *
+ * Those are the GRAS version of the good ol' assert macro. You can pass them a format message and
+ * arguments, just as if it where a printf. It is converted to a CRITICALn logging request.
+ *
+ * @{
+ */
+#ifdef NDEBUG
+#define xbt_assert(cond)
+#define xbt_assert0(cond,msg)
+#define xbt_assert1(cond,msg,a)
+#define xbt_assert2(cond,msg,a,b)
+#define xbt_assert3(cond,msg,a,b,c)
+#define xbt_assert4(cond,msg,a,b,c,d)
+#define xbt_assert5(cond,msg,a,b,c,d,e)
+#define xbt_assert6(cond,msg,a,b,c,d,e,f)
+#else
+     /** @brief The condition which failed will be displayed.
+        @hideinitializer  */
+#define xbt_assert(cond)                  if (!(cond)) { CRITICAL1("Assertion %s failed", #cond); xbt_abort(); }
+     /** @hideinitializer  */
+#define xbt_assert0(cond,msg)             if (!(cond)) { CRITICAL0(msg); xbt_abort(); }
+     /** @hideinitializer  */
+#define xbt_assert1(cond,msg,a)           if (!(cond)) { CRITICAL1(msg,a); xbt_abort(); }
+     /** @hideinitializer  */
+#define xbt_assert2(cond,msg,a,b)         if (!(cond)) { CRITICAL2(msg,a,b); xbt_abort(); }
+     /** @hideinitializer  */
+#define xbt_assert3(cond,msg,a,b,c)       if (!(cond)) { CRITICAL3(msg,a,b,c); xbt_abort(); }
+     /** @hideinitializer  */
+#define xbt_assert4(cond,msg,a,b,c,d)     if (!(cond)) { CRITICAL4(msg,a,b,c,d); xbt_abort(); }
+     /** @hideinitializer  */
+#define xbt_assert5(cond,msg,a,b,c,d,e)   if (!(cond)) { CRITICAL5(msg,a,b,c,d,e); xbt_abort(); }
+     /** @hideinitializer  */
+#define xbt_assert6(cond,msg,a,b,c,d,e,f) if (!(cond)) { CRITICAL6(msg,a,b,c,d,e,f); xbt_abort(); }
+#endif
+     
+/** @} */
+     
+void xbt_abort(void) _XBT_GNUC_NORETURN;
+void xbt_die(const char *msg) _XBT_GNUC_NORETURN;
+  
+END_DECL()
+
+#endif /* _XBT_ASSERTS_H */
index 97edd88..0616168 100644 (file)
@@ -10,6 +10,8 @@
 #ifndef XBT_ERROR_H
 #define XBT_ERROR_H
 
+//#error do not use this crap anymore
+
 #include "xbt/misc.h" /* BEGIN_DECL */
 #include "xbt/log.h"
 
@@ -122,44 +124,6 @@ typedef enum {
 /** @hideinitializer  */
 #define OLDRAISE6(code,fmt,a1,a2,a3,a4,a5,a6) _XBT_ERR_PRE   ERROR6(fmt,a1,a2,a3,a4,a5,a6); _XBT_ERR_POST(code)
 
-/** @} */
-/** 
- * \name 4. assert macro familly
- *
- * Those are the GRAS version of the good ol' assert macro. You can pass them a format message and 
- * arguments, just as if it where a printf. It is converted to a CRITICALn logging request.
- *
- * @{
- */
-#ifdef NDEBUG
-#define xbt_assert(cond)
-#define xbt_assert0(cond,msg)
-#define xbt_assert1(cond,msg,a)
-#define xbt_assert2(cond,msg,a,b)
-#define xbt_assert3(cond,msg,a,b,c)
-#define xbt_assert4(cond,msg,a,b,c,d)
-#define xbt_assert5(cond,msg,a,b,c,d,e)
-#define xbt_assert6(cond,msg,a,b,c,d,e,f)
-#else
-/** @brief The condition which failed will be displayed.
-    @hideinitializer  */
-#define xbt_assert(cond)                  if (!(cond)) { CRITICAL1("Assertion %s failed", #cond); xbt_abort(); }
-/** @hideinitializer  */
-#define xbt_assert0(cond,msg)             if (!(cond)) { CRITICAL0(msg); xbt_abort(); }
-/** @hideinitializer  */
-#define xbt_assert1(cond,msg,a)           if (!(cond)) { CRITICAL1(msg,a); xbt_abort(); }
-/** @hideinitializer  */
-#define xbt_assert2(cond,msg,a,b)         if (!(cond)) { CRITICAL2(msg,a,b); xbt_abort(); }
-/** @hideinitializer  */
-#define xbt_assert3(cond,msg,a,b,c)       if (!(cond)) { CRITICAL3(msg,a,b,c); xbt_abort(); }
-/** @hideinitializer  */
-#define xbt_assert4(cond,msg,a,b,c,d)     if (!(cond)) { CRITICAL4(msg,a,b,c,d); xbt_abort(); }
-/** @hideinitializer  */
-#define xbt_assert5(cond,msg,a,b,c,d,e)   if (!(cond)) { CRITICAL5(msg,a,b,c,d,e); xbt_abort(); }
-/** @hideinitializer  */
-#define xbt_assert6(cond,msg,a,b,c,d,e,f) if (!(cond)) { CRITICAL6(msg,a,b,c,d,e,f); xbt_abort(); }
-#endif
-
 /** @} */
 
 /** @name 5. Useful predefined errors 
index b917978..e6bec9d 100644 (file)
 #include <string.h>
 #include <stdlib.h> 
 #include <stdio.h>
+#include <stdarg.h> /* va_list */
    
 #include "xbt/misc.h"
-#include "xbt/error.h"
+#include "xbt/asserts.h"
   
 BEGIN_DECL()
+
 /** @addtogroup XBT_syscall
  *  @{
  */
@@ -94,8 +96,8 @@ static inline void *xbt_realloc(void*p,int s){
 
 /* FIXME: better place? */
 int vasprintf  (char **ptr, const char *fmt, va_list ap);
-char *bprintf(const char*fmt, ...);
-
+char *bprintf(const char*fmt, ...) _XBT_GNUC_PRINTF(1,2);
+  
 END_DECL()
 
 #endif /* _XBT_SYSDEP_H */