new.cpp 420 B

123456789101112131415161718
  1. #include "new.h"
  2. #include <library/cpp/yt/system/exit.h>
  3. namespace NYT::NDetail {
  4. ////////////////////////////////////////////////////////////////////////////////
  5. void AbortOnOom()
  6. {
  7. AbortProcessDramatically(
  8. EProcessExitCode::OutOfMemory,
  9. "Out-of-memory during object allocation");
  10. }
  11. ////////////////////////////////////////////////////////////////////////////////
  12. } // namespace NYT::NDetail