Преглед на файлове

Make STARPU_ABORT call assert(0) rather than abort().

This will provide better information (file, line...).
Cyril Roelandt преди 13 години
родител
ревизия
c07745e5dd
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      include/starpu_util.h

+ 1 - 1
include/starpu_util.h

@@ -48,7 +48,7 @@ extern "C"
 #  endif
 #endif
 
-#define STARPU_ABORT()		abort()
+#define STARPU_ABORT()		assert(0)
 
 #if defined(STARPU_HAVE_STRERROR_R)
 #  define STARPU_CHECK_RETURN_VALUE(err, message) {if (err < 0) { \