aboutsummaryrefslogtreecommitdiff
path: root/libbutl
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-02-12 21:42:20 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-02-12 21:42:20 +0300
commit282dce564a6cd33469f6b82ce94582bc4d9121be (patch)
tree3e8dceb6e0489bdddbd15cac22365a5ed6ca68a4 /libbutl
parent5fb6e5041b65150ec1c78d5e39caeb23e2f9a531 (diff)
Rename fdnull() to fdopen_null()
Diffstat (limited to 'libbutl')
-rw-r--r--libbutl/curl.cxx8
-rw-r--r--libbutl/curl.mxx2
-rw-r--r--libbutl/fdstream.cxx4
-rw-r--r--libbutl/fdstream.mxx4
-rw-r--r--libbutl/openssl.cxx12
-rw-r--r--libbutl/process.cxx6
-rw-r--r--libbutl/process.mxx2
7 files changed, 19 insertions, 19 deletions
diff --git a/libbutl/curl.cxx b/libbutl/curl.cxx
index 75ddfdb..ac3d0cb 100644
--- a/libbutl/curl.cxx
+++ b/libbutl/curl.cxx
@@ -53,7 +53,7 @@ namespace butl
case ftp_get:
case http_get:
{
- d.pipe.in = fdnull (); // /dev/null
+ d.pipe.in = fdopen_null (); // /dev/null
return pipe (d.pipe);
}
}
@@ -93,7 +93,7 @@ namespace butl
}
else
{
- d.pipe.in = fdnull (); // /dev/null
+ d.pipe.in = fdopen_null (); // /dev/null
r = pipe (d.pipe);
}
@@ -121,7 +121,7 @@ namespace butl
case ftp_put:
case http_post: // May or may not produce output.
{
- d.pipe.out = fdnull ();
+ d.pipe.out = fdopen_null ();
return pipe (d.pipe); // /dev/null
}
}
@@ -153,7 +153,7 @@ namespace butl
{
d.options.push_back ("-o");
d.options.push_back (f.string ().c_str ());
- d.pipe.out = fdnull (); // /dev/null
+ d.pipe.out = fdopen_null (); // /dev/null
r = pipe (d.pipe);
}
diff --git a/libbutl/curl.mxx b/libbutl/curl.mxx
index 408c06c..03aac99 100644
--- a/libbutl/curl.mxx
+++ b/libbutl/curl.mxx
@@ -70,7 +70,7 @@ LIBBUTL_MODEXPORT namespace butl
// "http://example.org");
//
// curl (nullfd,
- // fdnull (), // Write result to /dev/null.
+ // fdopen_null (), // Write result to /dev/null.
// 2,
// curl::get,
// "tftp://localhost/foo");
diff --git a/libbutl/fdstream.cxx b/libbutl/fdstream.cxx
index 365174d..b58240c 100644
--- a/libbutl/fdstream.cxx
+++ b/libbutl/fdstream.cxx
@@ -1217,7 +1217,7 @@ namespace butl
}
auto_fd
- fdnull ()
+ fdopen_null ()
{
int fd (open ("/dev/null", O_RDWR | O_CLOEXEC));
@@ -1483,7 +1483,7 @@ namespace butl
}
auto_fd
- fdnull (bool temp)
+ fdopen_null (bool temp)
{
// No need to translate \r\n before sending it to void.
//
diff --git a/libbutl/fdstream.mxx b/libbutl/fdstream.mxx
index 41b8748..0d56131 100644
--- a/libbutl/fdstream.mxx
+++ b/libbutl/fdstream.mxx
@@ -812,10 +812,10 @@ LIBBUTL_MODEXPORT namespace butl
//
#ifndef _WIN32
LIBBUTL_SYMEXPORT auto_fd
- fdnull ();
+ fdopen_null ();
#else
LIBBUTL_SYMEXPORT auto_fd
- fdnull (bool temp = false);
+ fdopen_null (bool temp = false);
#endif
struct fdpipe
diff --git a/libbutl/openssl.cxx b/libbutl/openssl.cxx
index ecbebcd..8741b35 100644
--- a/libbutl/openssl.cxx
+++ b/libbutl/openssl.cxx
@@ -38,7 +38,7 @@ namespace butl
process::pipe openssl::
map_in (nullfd_t, io_data& d)
{
- d.pipe.in = fdnull (); // /dev/null
+ d.pipe.in = fdopen_null (); // /dev/null
return pipe (d.pipe);
}
@@ -59,7 +59,7 @@ namespace butl
{
d.options.push_back ("-in");
d.options.push_back (f.string ().c_str ());
- d.pipe.in = fdnull (); // /dev/null
+ d.pipe.in = fdopen_null (); // /dev/null
r = pipe (d.pipe);
}
@@ -77,7 +77,7 @@ namespace butl
? fdopen_mode::binary
: fdopen_mode::none);
pipe r (d.pipe);
-
+
out.open (move (d.pipe.out));
return r;
}
@@ -85,7 +85,7 @@ namespace butl
process::pipe openssl::
map_out (nullfd_t, io_data& d)
{
- d.pipe.out = fdnull ();
+ d.pipe.out = fdopen_null ();
return pipe (d.pipe); // /dev/null
}
@@ -106,7 +106,7 @@ namespace butl
{
d.options.push_back ("-out");
d.options.push_back (f.string ().c_str ());
- d.pipe.out = fdnull (); // /dev/null
+ d.pipe.out = fdopen_null (); // /dev/null
r = pipe (d.pipe);
}
@@ -124,7 +124,7 @@ namespace butl
? fdopen_mode::binary
: fdopen_mode::none);
pipe r (d.pipe);
-
+
in.open (move (d.pipe.in), fdstream_mode::skip);
return r;
}
diff --git a/libbutl/process.cxx b/libbutl/process.cxx
index 74f04fa..d4322a9 100644
--- a/libbutl/process.cxx
+++ b/libbutl/process.cxx
@@ -135,7 +135,7 @@ import std.threading;
#endif
import butl.utility; // icasecmp()
-import butl.fdstream; // fdnull()
+import butl.fdstream; // fdopen_null()
#else
#include <libbutl/utility.mxx>
#include <libbutl/fdstream.mxx>
@@ -412,7 +412,7 @@ namespace butl
{
try
{
- return fdnull ();
+ return fdopen_null ();
}
catch (const ios_base::failure& e)
{
@@ -1510,7 +1510,7 @@ namespace butl
//
try
{
- return fdnull (true);
+ return fdopen_null (true /* temp */);
}
catch (const ios_base::failure& e)
{
diff --git a/libbutl/process.mxx b/libbutl/process.mxx
index f31c362..1f378c4 100644
--- a/libbutl/process.mxx
+++ b/libbutl/process.mxx
@@ -530,7 +530,7 @@ LIBBUTL_MODEXPORT namespace butl
// make stdin read from /dev/null, stdout redirect to stderr, and inherit
// the parent's stderr.
//
- // process_run (fdnull (), 2, 2, ...)
+ // process_run (fdopen_null (), 2, 2, ...)
//
// The P argument is the program path. It can be anything that can be passed
// to process::path_search() (const char*, std::string, path) or the