소스 검색

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) { \