Skip to content
Snippets Groups Projects
Commit cb9918bb authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Reverted throw(0); in FPE.h, it is not better than plain abort(); in any way

parent 1e2b8d32
No related branches found
No related tags found
No related merge requests found
......@@ -41,8 +41,8 @@ printStackBacktraceAndAbort( int sig = 0 )
else
fprintf( stderr, "Aborting due to signal %d...\n", sig );
printStackBacktrace();
throw( 0 );
//abort();
// TODO: maybe use MPI_Abort(MPI_COMM_WORLD, 1); if we can detect we run under MPI
abort();
}
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment