mirror of
https://github.com/textmate/textmate.git
synced 2026-01-23 13:47:54 -05:00
27 lines
748 B
C++
27 lines
748 B
C++
#ifndef IO_EXEC_H_4VCQB3PK
|
|
#define IO_EXEC_H_4VCQB3PK
|
|
|
|
#include <oak/misc.h>
|
|
|
|
namespace io
|
|
{
|
|
struct PUBLIC process_t
|
|
{
|
|
explicit operator bool () const { return pid != -1; }
|
|
|
|
pid_t pid = -1;
|
|
int in = -1, out = -1, err = -1;
|
|
};
|
|
|
|
PUBLIC process_t spawn (std::vector<std::string> const& args);
|
|
PUBLIC process_t spawn (std::vector<std::string> const& args, std::map<std::string, std::string> const& environment);
|
|
PUBLIC void exhaust_fd (int fd, std::string* out);
|
|
|
|
// takes NULL-terminated list of arguments
|
|
PUBLIC std::string exec (std::string const cmd, ...);
|
|
PUBLIC std::string exec (std::map<std::string, std::string> const& environment, std::string const cmd, ...);
|
|
|
|
} /* io */
|
|
|
|
#endif /* end of include guard: IO_EXEC_H_4VCQB3PK */
|