1
1

added SIGFPE to default list of signals that generate a backtrace (where supported)

This commit was SVN r8632.
Этот коммит содержится в:
Tim Woodall 2006-01-04 16:02:45 +00:00
родитель d272e02338
Коммит 7eade5b856

Просмотреть файл

@ -83,6 +83,9 @@ int ompi_mpi_register_params(void)
#endif
#ifdef SIGSEGV
SIGSEGV,
#endif
#ifdef SIGFPE
SIGFPE,
#endif
-1
};