diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2020-03-28 09:09:11 +0100 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2020-03-28 09:09:11 +0100 |
commit | 5cdcd6ec7949c856de39d032f68ba8ddd0ee9fb3 (patch) | |
tree | f3879de74d7d01fadb9f18efdd178f0ee194418c /passes/cmds | |
parent | 1bf2bdf05bd78a08f932780d99144b2d56e2943f (diff) | |
download | yosys-5cdcd6ec7949c856de39d032f68ba8ddd0ee9fb3.tar.gz yosys-5cdcd6ec7949c856de39d032f68ba8ddd0ee9fb3.tar.bz2 yosys-5cdcd6ec7949c856de39d032f68ba8ddd0ee9fb3.zip |
windows - there are no stopping signals
Diffstat (limited to 'passes/cmds')
-rw-r--r-- | passes/cmds/exec.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/passes/cmds/exec.cc b/passes/cmds/exec.cc index 399cb0ebb..e4676fd33 100644 --- a/passes/cmds/exec.cc +++ b/passes/cmds/exec.cc @@ -27,6 +27,7 @@ # define WIFSTOPPED(x) 0 # define WEXITSTATUS(x) ((x) & 0xff) # define WTERMSIG(x) SIGTERM +# define WSTOPSIG(x) 0 #else # include <sys/wait.h> #endif |