diff options
author | John Barboza <jbarboza@ca.ibm.com> | 2017-04-10 08:55:37 -0400 |
---|---|---|
committer | Santiago Gimeno <santiago.gimeno@gmail.com> | 2017-12-15 11:04:16 +0100 |
commit | b01de7341f40e1f30d78178442b0b87a46b3b7a7 (patch) | |
tree | 7f11eca4a01a258f1cdddf61ecb229eb86a0558d /docs/src | |
parent | e771ede0699f0b4a05d9ab2d824a32a4df73964e (diff) | |
download | libuv-b01de7341f40e1f30d78178442b0b87a46b3b7a7.tar.gz libuv-b01de7341f40e1f30d78178442b0b87a46b3b7a7.zip |
zos: implement uv_fs_event* functions
This commit uses the Register File Interest feature on z/OS
to enable users to monitor file system events.
The poll call is used to check for file descriptors as well
as a message queue that z/OS will report file system events
on. The last item on the list used by poll will contain the
message queue id instead of a file descriptor.
Limitation:
Writes to a directory (that is, file creation and deletion)
do not generate a change message for a registered directory.
PR-URL: https://github.com/libuv/libuv/pull/1311
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/fs_event.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/src/fs_event.rst b/docs/src/fs_event.rst index 2af3e980..bd076aae 100644 --- a/docs/src/fs_event.rst +++ b/docs/src/fs_event.rst @@ -19,7 +19,13 @@ the best backend for the job on each platform. See documentation_ for more details. + The z/OS file system events monitoring infrastructure does not notify of file + creation/deletion within a directory that is being monitored. + See the `IBM Knowledge centre`_ for more details. + .. _documentation: http://www.ibm.com/developerworks/aix/library/au-aix_event_infrastructure/ + .. _`IBM Knowledge centre`: https://www.ibm.com/support/knowledgecenter/en/SSLTBW_2.2.0/com.ibm.zos.v2r1.bpxb100/ioc.htm + |