Fix plural of "child" -- it is not "childs" but "children".

This commit is contained in:
Lauri Nurmi 2014-10-01 20:33:02 +03:00
parent 7c7fcf36af
commit c6d9e2b3d4
2 changed files with 6 additions and 6 deletions

View File

@ -141,12 +141,12 @@ int ThreadExecutor::handleRead(int rpipe, unsigned int &result)
return 1;
}
bool ThreadExecutor::checkLoadAverage(size_t nchilds)
bool ThreadExecutor::checkLoadAverage(size_t nchildren)
{
#ifdef __CYGWIN__ // getloadavg() is unsupported on Cygwin.
return true;
#else
if (!nchilds || !_settings._loadAverage) {
if (!nchildren || !_settings._loadAverage) {
return true;
}
@ -178,8 +178,8 @@ unsigned int ThreadExecutor::check()
std::map<std::string, std::size_t>::const_iterator i = _files.begin();
for (;;) {
// Start a new child
size_t nchilds = rpipes.size();
if (i != _files.end() && nchilds < _settings._jobs && checkLoadAverage(nchilds)) {
size_t nchildren = rpipes.size();
if (i != _files.end() && nchildren < _settings._jobs && checkLoadAverage(nchildren)) {
int pipes[2];
if (pipe(pipes) == -1) {
std::cerr << "pipe() failed: "<< std::strerror(errno) << std::endl;

View File

@ -89,10 +89,10 @@ private:
/**
* @brief Check load average condition
* @param nchilds - count of currently runned childs
* @param nchildren - count of currently runned children
* @return true - if new process can be started
*/
bool checkLoadAverage(size_t nchilds);
bool checkLoadAverage(size_t nchildren);
public:
/**