Properly wait for spawned processes to end
This commit is contained in:
parent
76b3ca0d33
commit
791a08363a
1 changed files with 7 additions and 2 deletions
|
@ -111,16 +111,21 @@ class Page {
|
||||||
pandoc.stdin.writeln();
|
pandoc.stdin.writeln();
|
||||||
pandoc.stdin.flush();
|
pandoc.stdin.flush();
|
||||||
pandoc.stdin.close();
|
pandoc.stdin.close();
|
||||||
|
pandoc.pid.wait();
|
||||||
string result;
|
string result;
|
||||||
string line;
|
string line;
|
||||||
while ((line = pandoc.stdout.readln()) !is null) {
|
while ((line = pandoc.stdout.readln()) !is null) {
|
||||||
result ~= line;
|
result ~= line;
|
||||||
|
debug {
|
||||||
logf("Pandoc stdout: %s", line);
|
logf("Pandoc stdout: %s", line);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
while ((line = pandoc.stderr.readln()) !is null) {
|
while ((line = pandoc.stderr.readln()) !is null) {
|
||||||
|
debug {
|
||||||
logf("Pandoc stderr: %s", line);
|
logf("Pandoc stderr: %s", line);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue