Sha256: 3479493ea86c7e6a54df59d031e4a240628c4cf8e2335f76425e3ca646dee796
Contents?: true
Size: 618 Bytes
Versions: 16
Compression:
Stored size: 618 Bytes
Contents
#include <unistd.h> #include <errno.h> namespace leatherman { namespace execution { std::string format_error(std::string const& message = std::string(), int error = errno); pid_t create_child(leatherman::util::option_set<execution_options> const& options, int in_fd, int out_fd, int err_fd, uint64_t max_fd, char const* program, char const** argv, char const** envp); void exec_child(int in_fd, int out_fd, int err_fd, uint64_t max_fd, char const* program, char const** argv, char const** envp); }} // namespace leatherman::execution
Version data entries
16 entries across 16 versions & 2 rubygems