diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-10-02 22:39:34 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-10-02 22:45:48 +0200 |
commit | 9c426a30f98df53aa4f7bcbdd1539e31fb7f413b (patch) | |
tree | 7eb02193e0d03b0643bdd359a78657f0fa7e1c98 /src/common/spawn.h | |
parent | Merge pull request #4476 (diff) | |
download | monero-9c426a30f98df53aa4f7bcbdd1539e31fb7f413b.tar.xz |
Merge pull request #4479
d5541e44 common: Windows 'spawn' support for tx and block notifications (xiphon)
Diffstat (limited to '')
-rw-r--r-- | src/common/spawn.h (renamed from src/common/exec.h) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/exec.h b/src/common/spawn.h index 4d2037798..c90a0f790 100644 --- a/src/common/exec.h +++ b/src/common/spawn.h @@ -31,6 +31,6 @@ namespace tools { -int exec(const char *filename, char * const argv[], bool wait); +int spawn(const char *filename, const std::vector<std::string>& args, bool wait); } |