1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 20:04:51 +01:00

Add nonblock and fsync flags in eio

Not 100% if these are needed, but it doesn't seem to hurt either.
This commit is contained in:
Aaron Piotrowski 2017-06-16 18:22:34 -05:00
parent 4f9630298f
commit 0becf8af09

View File

@ -2,7 +2,7 @@
namespace Amp\File;
use Amp\{ Deferred, Failure, Loop, Promise, Success };
use Amp\{ Deferred, Loop, Promise, Success };
class EioDriver implements Driver {
private $watcher;
@ -54,7 +54,7 @@ class EioDriver implements Driver {
* {@inheritdoc}
*/
public function open(string $path, string $mode): Promise {
$flags = $this->parseMode($mode);
$flags = \EIO_O_NONBLOCK | \EIO_O_FSYNC | $this->parseMode($mode);
$chmod = ($flags & \EIO_O_CREAT) ? 0644 : 0;
($this->incrementor)(1);