Rename 'initChild' to 'runChild'.

This is similar to commit b5ed5b6 in upstream Nix.
This commit is contained in:
Ludovic Courtès 2015-06-03 17:45:32 +02:00
parent 3bfa70b796
commit 909f1260e2
1 changed files with 6 additions and 6 deletions

View File

@ -764,7 +764,7 @@ private:
typedef void (DerivationGoal::*GoalState)(); typedef void (DerivationGoal::*GoalState)();
GoalState state; GoalState state;
/* Stuff we need to pass to initChild(). */ /* Stuff we need to pass to runChild(). */
typedef map<Path, Path> DirsInChroot; // maps target path to source path typedef map<Path, Path> DirsInChroot; // maps target path to source path
DirsInChroot dirsInChroot; DirsInChroot dirsInChroot;
typedef map<string, string> Environment; typedef map<string, string> Environment;
@ -828,8 +828,8 @@ private:
/* Start building a derivation. */ /* Start building a derivation. */
void startBuilder(); void startBuilder();
/* Initialise the builder's process. */ /* Run the builder's process. */
void initChild(); void runChild();
friend int childEntry(void *); friend int childEntry(void *);
@ -1612,7 +1612,7 @@ void chmod_(const Path & path, mode_t mode)
int childEntry(void * arg) int childEntry(void * arg)
{ {
((DerivationGoal *) arg)->initChild(); ((DerivationGoal *) arg)->runChild();
return 1; return 1;
} }
@ -1970,7 +1970,7 @@ void DerivationGoal::startBuilder()
#endif #endif
{ {
pid = fork(); pid = fork();
if (pid == 0) initChild(); if (pid == 0) runChild();
} }
if (pid == -1) throw SysError("unable to fork"); if (pid == -1) throw SysError("unable to fork");
@ -1993,7 +1993,7 @@ void DerivationGoal::startBuilder()
} }
void DerivationGoal::initChild() void DerivationGoal::runChild()
{ {
/* Warning: in the child we should absolutely not make any SQLite /* Warning: in the child we should absolutely not make any SQLite
calls! */ calls! */