X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FLibraries%2Flibc%2B%2B.so_src%2Fexceptions.cc;h=f570f3410ca8cdf4c25cc89cf0c631e2ad302eb8;hb=1a4752fe23a96f47fb83c57861aa991681fa98b0;hp=593ce3addca7b9c9d60f9e7f07e7bf6b22d54968;hpb=8ae0b1147e613573a45fcd8e6f2f6af2aeff54ac;p=tpg%2Facess2.git diff --git a/Usermode/Libraries/libc++.so_src/exceptions.cc b/Usermode/Libraries/libc++.so_src/exceptions.cc index 593ce3ad..f570f341 100644 --- a/Usermode/Libraries/libc++.so_src/exceptions.cc +++ b/Usermode/Libraries/libc++.so_src/exceptions.cc @@ -38,6 +38,7 @@ const char* ::std::exception::what() const throw() void ::std::terminate() { + _SysDebug("::std::terminate()"); _exit(0); } @@ -51,3 +52,8 @@ void ::std::terminate() logic_error(what_str) { } + +::std::length_error::length_error(const ::std::string& what_str): + logic_error(what_str) +{ +}