mirror of https://gitee.com/bigwinds/arangodb
Fix windows for TRI_SuspendExternalProcess NOP.
This commit is contained in:
parent
e7f817ffb6
commit
6c355cf420
|
@ -1183,6 +1183,8 @@ bool TRI_SuspendExternalProcess(TRI_external_id_t pid) {
|
|||
|
||||
#ifndef _WIN32
|
||||
return 0 == kill(pid._pid, SIGSTOP);
|
||||
#else
|
||||
return true;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -1195,6 +1197,8 @@ bool TRI_ContinueExternalProcess(TRI_external_id_t pid) {
|
|||
|
||||
#ifndef _WIN32
|
||||
return 0 == kill(pid._pid, SIGCONT);
|
||||
#else
|
||||
return true;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue