1
0
Fork 0

Fix windows for TRI_SuspendExternalProcess NOP.

This commit is contained in:
Max Neunhoeffer 2016-05-19 16:28:20 +02:00
parent e7f817ffb6
commit 6c355cf420
1 changed files with 4 additions and 0 deletions

View File

@ -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
}