pastebin - collaborative debugging tool
rovema.kpaste.net RSS


gnu_ostream_with_cloexec1.cpp - example to show how to create a std::ostream where the fd has |O_CLOEXEC| set
Posted by Anonymous on Tue 15th Oct 2024 10:48
raw | new post

  1. /*
  2.  * gnu_ostream_with_cloexec1.cpp - example to show
  3.  * how to create a std::ostream where the fd has
  4.  * |O_CLOEXEC| set
  5.  *
  6.  * Works on:
  7.  * - Debian Bullseye with gcc version 10.2.1
  8.  * - Debian Bullseye with Debian clang version 11.0.1-2
  9.  * - Cygwin 3.5.4 with gcc version 12.4.0
  10.  *
  11.  * Written by Roland Mainz <roland.mainz@nrubsig.org>
  12.  */
  13.  
  14. #include <sys/types.h>
  15. #include <sys/stat.h>
  16. #include <fcntl.h>
  17. #include <unistd.h>
  18. #include <iostream>
  19. #include <fstream>
  20. #include <ext/stdio_filebuf.h>
  21.  
  22. int main(int ac, char *av[])
  23. {
  24.         int fd = open("hello.txt", O_WRONLY|O_CREAT|O_CLOEXEC, 0666);
  25.         if (fd < 0) {
  26.                 std::cerr << "Error opening file" << std::endl;
  27.                 return EXIT_FAILURE;
  28.         }
  29.  
  30.         __gnu_cxx::stdio_filebuf<char> fbuf(fd, std::ios_base::out);
  31.         std::ostream os(&fbuf);
  32.         os << "Hello fd cookie monster!" << std::endl;
  33.        
  34.         /* This will close |fd|, too! */
  35.         fbuf.close();
  36.  
  37.         return EXIT_SUCCESS;
  38. }

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