|
@@ -268,7 +268,10 @@ class Select implements EventInterface
|
|
|
$except = $this->_exceptFds;
|
|
$except = $this->_exceptFds;
|
|
|
|
|
|
|
|
// Waiting read/write/signal/timeout events.
|
|
// Waiting read/write/signal/timeout events.
|
|
|
- $ret = @stream_select($read, $write, $except, 0, $this->_selectTimeout);
|
|
|
|
|
|
|
+ set_error_handler(function(){});
|
|
|
|
|
+ $ret = stream_select($read, $write, $except, 0, $this->_selectTimeout);
|
|
|
|
|
+ restore_error_handler();
|
|
|
|
|
+
|
|
|
|
|
|
|
|
if (!$this->_scheduler->isEmpty()) {
|
|
if (!$this->_scheduler->isEmpty()) {
|
|
|
$this->tick();
|
|
$this->tick();
|