ソースを参照

followup to 22578: src/core/workers.c: do not use sys_siglist as it does not belong to the standard

Nathalie Furmento 7 年 前
コミット
ded1a3dc66
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1 1
      src/core/workers.c

+ 1 - 1
src/core/workers.c

@@ -1171,7 +1171,7 @@ void _starpu_handler(int sig)
 		signal(SIGSEGV, act_sigsegv);
 	}
 #ifdef STARPU_VERBOSE
-	_STARPU_MSG("Rearming signal '%s'\n", sys_siglist[sig]);
+	_STARPU_MSG("Rearming signal '%d'\n", sig);
 #endif
 	raise(sig);
 }