X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;ds=sidebyside;f=includes%2FForkController.php;h=c1765e24e46e0880a56d57c350a4d40774263e21;hb=145f1c1bb4dfa6e173bdd5dcbabfedbe91722daf;hp=2d5aa4b248f2e7f91040de225ce5c64bbee98d81;hpb=2a47a3e91cb89bf725233235ff27176eb9aad6eb;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/ForkController.php b/includes/ForkController.php index 2d5aa4b248..c1765e24e4 100644 --- a/includes/ForkController.php +++ b/includes/ForkController.php @@ -30,7 +30,7 @@ * @ingroup Maintenance */ class ForkController { - protected $children = array(); + protected $children = array(), $childNumber = 0; protected $termReceived = false; protected $flags = 0, $procsToStart = 0; @@ -137,6 +137,16 @@ class ForkController { return 'done'; } + /** + * Get the number of the child currently running. Note, this + * is not the pid, but rather which of the total number of children + * we are + * @return int + */ + public function getChildNumber() { + return $this->childNumber; + } + protected function prepareEnvironment() { global $wgMemc; // Don't share DB, storage, or memcached connections @@ -150,6 +160,7 @@ class ForkController { /** * Fork a number of worker processes. * + * @param int $numProcs * @return string */ protected function forkWorkers( $numProcs ) { @@ -166,6 +177,7 @@ class ForkController { if ( !$pid ) { $this->initChild(); + $this->childNumber = $i; return 'child'; } else { // This is the parent process