Fix exporter write error check#507
Conversation
write() returns -1 on error, not 0. The previous check: - Missed all real errors (ENOSPC, EIO, EPIPE) - False-alarmed on legitimate 0-byte writes Also handle short writes with a loop, since write() may return less than the requested length. Fixes #498
Benchmark results for collatzParameters
SummaryFound 0 performance improvements and 0 performance regressions! Performance is the same for 1 metrics, 0 unstable metrics. See unchanged results
|
Benchmark results for BadBoggleSolver_runParameters
SummaryFound 0 performance improvements and 0 performance regressions! Performance is the same for 1 metrics, 0 unstable metrics. See unchanged results
|
|
/merge |
|
View all feedbacks in Devflow UI.
This pull request is not mergeable according to GitHub. Common reasons include pending required checks, missing approvals, or merge conflicts — but it could also be blocked by other repository rules or settings.
The expected merge time in
|
What does this PR do?
Replaces following PR
Refer to original PR