pastebin - collaborative debugging tool
rovema.kpaste.net RSS


c++pmr1.cpp PMR buffer too small test 1
Posted by Anonymous on Wed 3rd Jul 2024 14:57
raw | new post
view followups (newest first): c++pmr1.cpp PMR buffer too small test 1 by Anonymous

  1.  
  2. /*
  3.  * c++pmr1.cpp - Simple C++17 PMR example+out-of-memory condition
  4.  *
  5.  * Compile and run with
  6.  * ---- snip ----
  7.  * rm -f a.exe* ; clang++ -target x86_64-w64-mingw32 -std=c++17 -Bstatic c++pmr1.cpp
  8.  * $ PATH+=':/usr/x86_64-w64-mingw32/sys-root/mingw/bin/' ./a.exe
  9.  * # Cycle: 0: str='x'
  10.  * # Cycle: 1: str='xx'
  11.  * # Cycle: 2: str='xxxx'
  12.  * # Cycle: 3: str='xxxxxxxx'
  13.  * # Cycle: 4: str='xxxxxxxxxxxxxxxx'
  14.  * DIE!!std::bad_alloc
  15.  * ---- snip ----
  16.  *
  17.  * Written by Roland Mainz <roland.mainz@nrubsig.org>
  18.  */
  19.  
  20. #include <array>
  21. #include <cstddef>
  22. #include <iostream>
  23. #include <memory_resource>
  24.  
  25.  
  26. int main(int ac, char *av[])
  27. {
  28.         char buffer[64];
  29.  
  30.         /*
  31.          * Note that without |std::pmr::null_memory_resource()| |monotonic_buffer_resource()| will
  32.          * use the default memory resource to obtain memory if it runs out of memory
  33.          */
  34.         std::pmr::monotonic_buffer_resource pool{buffer, sizeof(buffer), std::pmr::null_memory_resource() };
  35.         std::pmr::polymorphic_allocator<char> pa{&pool};
  36.         std::pmr::string s{"x", pa};
  37.  
  38.         try {
  39.                 for (int i=0 ; i < 10 ; i++) {
  40.                         std::cout << "# Cycle: " << i << ": str='" << s << "'" << std::endl;
  41.                         s+=s;
  42.                 }
  43.  
  44.                 std::cout << s << std::endl;
  45.         } catch(const std::exception &e) {
  46.                 std::cerr << "DIE!!" << e.what() << std::endl;
  47.         }
  48.  
  49.         return EXIT_SUCCESS;
  50. }

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at