Skip to content

Commit

Permalink
Readding accidently removed std::abort
Browse files Browse the repository at this point in the history
This abort was removed with #3188.
  • Loading branch information
Thomas Heller committed Mar 13, 2018
1 parent 30abb4e commit 98653ad
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/runtime.cpp
Expand Up @@ -75,6 +75,7 @@ namespace hpx
<< "{what}: " << (reason ? reason : "Unknown reason") << "\n"
<< full_build_string(); // add full build information
}
std::abort();
}

HPX_EXPORT BOOL WINAPI termination_handler(DWORD ctrl_type)
Expand Down Expand Up @@ -134,6 +135,7 @@ namespace hpx
<< "{what}: " << (reason ? reason : "Unknown signal") << "\n"
<< full_build_string(); // add full build information
}
std::abort();
}
}

Expand Down

0 comments on commit 98653ad

Please sign in to comment.