Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions riscv/dts.cc
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,11 @@ static std::string dtc_compile(const std::string& dtc_input, bool compile)

int got;
char buf[4096];
while ((got = read(dtc_output_pipe[0], buf, sizeof(buf))) > 0) {
dtc_output.write(buf, got);
}
do {
while ((got = read(dtc_output_pipe[0], buf, sizeof(buf))) > 0) {
dtc_output.write(buf, got);
}
} while (got == -1 && errno == EINTR); // Retry the read() if it was interrupted by a signal
if (got == -1) {
std::cerr << "Failed to read dtc_output: " << strerror(errno) << std::endl;
exit(1);
Expand Down