History log of /php-uv/tests/300-fs.phpt (Results 1 – 6 of 6)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# e76ac0dc 15-Feb-2020 Bob Weinand

Refactor uv callback signatures


Revision tags: v0.2.2, v0.2.1, v0.2.0, v0.1.2, v0.1.1, v0.1.0
# 4751e80a 18-Jan-2015 Bob Weinand

Fix various bugs...


# 4332fe7a 18-Jan-2015 Bob Weinand

Current, broken PHP 7 port...


# a25595f4 11-Nov-2014 Daniel Lowrey

Add $offset param to uv_fs_read() to allow seeking on open handles

This change modifies the uv_fs_read() function signature slightly by adding
a new $offset parameter. This allows the sa

Add $offset param to uv_fs_read() to allow seeking on open handles

This change modifies the uv_fs_read() function signature slightly by adding
a new $offset parameter. This allows the same file handle to be reused for
multiple reads. Previously the only way to access a section of a file that
had already been read was to open a new handle.

Old:
uv_fs_read(resoruce $loop, zval $fd, long $length, callable $callback)

New:
uv_fs_read(resoruce $loop, zval $fd, long $offest, long $length, callable $callback)

This change represents a minor BC break for existing code using uv_fs_read().

show more ...


# 90c9db69 11-Feb-2013 Shuhei Tanuma

update latest libuv and http-parser

Notes: ares functions are removed as uv removed that features. please use before commit
if you want to use ares features. currently, php ares extensio

update latest libuv and http-parser

Notes: ares functions are removed as uv removed that features. please use before commit
if you want to use ares features. currently, php ares extension seems not maintained.
please ask me when you met some troubles about ares feature.

show more ...


# f6a2bd48 02-Jul-2012 Shuhei Tanuma

change uv_fs_read cb signature: use same callback signature as uv_read_cb