FD_SETSIZE check: BuildError -> Error

BuildError denotes a permanent build failure, which is not the case
here.
This commit is contained in:
Eelco Dolstra
2017-07-20 13:33:13 +02:00
parent b144c4d617
commit fc3568e263
+2 -3
View File
@@ -3835,9 +3835,8 @@ void Worker::waitForInput()
int fdMax = 0;
for (auto & i : children) {
for (auto & j : i.fds) {
if (j >= FD_SETSIZE) {
throw BuildError("reached FD_SETSIZE limit");
}
if (j >= FD_SETSIZE)
throw Error("reached FD_SETSIZE limit");
FD_SET(j, &fds);
if (j >= fdMax) fdMax = j + 1;
}