libstdc++: Add comment to nothrow new explaining catch (...)
authorJonathan Wakely <jwakely@redhat.com>
Wed, 28 Oct 2020 13:19:21 +0000 (13:19 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Wed, 28 Oct 2020 13:19:21 +0000 (13:19 +0000)
The decision to not rethrow a __forced_unwind exception is deliberate,
so add a comment explaining it.

libstdc++-v3/ChangeLog:

* libsupc++/new_opnt.cc (new): Add comment about forced unwind
exceptions.

libstdc++-v3/libsupc++/new_opnt.cc

index ace4e6f..0e5e39a 100644 (file)
@@ -26,9 +26,6 @@
 #include <bits/exception_defines.h>
 #include "new"
 
-using std::new_handler;
-using std::bad_alloc;
-
 extern "C" void *malloc (std::size_t);
 
 _GLIBCXX_WEAK_DEFINITION void *
@@ -43,6 +40,13 @@ operator new (std::size_t sz, const std::nothrow_t&) noexcept
     }
   __catch (...)
     {
+      // N.B. catch (...) means the process will terminate if operator new(sz)
+      // exits with a __forced_unwind exception. The process will print
+      // "FATAL: exception not rethrown" to stderr before exiting.
+      //
+      // If we propagated that exception the process would still terminate
+      // (because this function is noexcept) but with a less informative error:
+      // "terminate called without active exception".
       return nullptr;
     }
 }