diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-12-10T16·25+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-12-10T16·25+0100 |
commit | b5ed5b6e666e9d1e23b7cbc815684bfef52c3d41 (patch) | |
tree | 1185f9b17af6f816c506ad6897c2377f8e8e82e4 /src/libstore/build.cc | |
parent | 20cf0127f5a0cfd417bc7256db23f6eef2ad8141 (diff) |
Rename function
Diffstat (limited to 'src/libstore/build.cc')
-rw-r--r-- | src/libstore/build.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc index 539d0b21b278..ab8923bbdc47 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -816,8 +816,8 @@ private: /* Start building a derivation. */ void startBuilder(); - /* Initialise the builder's process. */ - void initChild(); + /* Run the builder's process. */ + void runChild(); friend int childEntry(void *); @@ -1915,7 +1915,7 @@ void DerivationGoal::startBuilder() /* Fork a child to build the package. */ pid = startProcess([&]() { - initChild(); + runChild(); }); /* parent */ @@ -1936,7 +1936,7 @@ void DerivationGoal::startBuilder() } -void DerivationGoal::initChild() +void DerivationGoal::runChild() { /* Warning: in the child we should absolutely not make any SQLite calls! */ |