1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-22 14:01:14 +01:00

Thread::kill() was removed in pthreads 3

This commit is contained in:
Aaron Piotrowski 2016-01-23 10:52:18 -06:00
parent 92999aba6f
commit 2290835fc0

View File

@ -93,8 +93,7 @@ class Thread extends \Thread
*/ */
public function kill() public function kill()
{ {
$this->killed = true; return $this->killed = true;
return parent::kill();
} }
/** /**