浏览代码

port r17088 from 1.1: make sure abort does trap on macos

Samuel Thibault 9 年之前
父节点
当前提交
d8baa047f6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      include/starpu_util.h

+ 1 - 1
include/starpu_util.h

@@ -116,7 +116,7 @@ extern "C"
 #endif
 
 #ifdef __APPLE_CC__
-#  define _starpu_abort() *(int*)NULL = 0
+#  define _starpu_abort() *(volatile int*)NULL = 0
 #else
 #  define _starpu_abort() abort()
 #endif