aboutsummaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/poll.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/src/poll.rst b/docs/src/poll.rst
index 69d45be6..004ff4b9 100644
--- a/docs/src/poll.rst
+++ b/docs/src/poll.rst
@@ -31,6 +31,8 @@ closed immediately after a call to :c:func:`uv_poll_stop` or :c:func:`uv_close`.
On windows only sockets can be polled with poll handles. On Unix any file
descriptor that would be accepted by :man:`poll(2)` can be used.
+.. note::
+ On AIX, watching for disconnection is not supported.
Data types
----------
@@ -101,6 +103,10 @@ API
Calling :c:func:`uv_poll_start` on a handle that is already active is fine. Doing so
will update the events mask that is being watched for.
+ .. note::
+ Though UV_DISCONNECT can be set, it is unsupported on AIX and as such will not be set
+ on the `events` field in the callback.
+
.. versionchanged:: 1.9.0 Added the UV_DISCONNECT event.
.. c:function:: int uv_poll_stop(uv_poll_t* poll)