0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-26 08:42:34 +01:00

construct/console: Add a couple more halting options.

This commit is contained in:
Jason Volk 2019-02-22 10:59:47 -08:00
parent a4e709c6d4
commit 169abb0676

View file

@ -190,6 +190,12 @@ try
if(line == "ABORT")
abort();
if(line == "TERMINATE")
std::terminate();
if(line == "terminate")
ircd::terminate();
if(line == "EXIT")
exit(0);