X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/9bccf70c0258c7cac2dcb80011b2a964d884c552..HEAD:/osfmk/man/device_reply_server.html diff --git a/osfmk/man/device_reply_server.html b/osfmk/man/device_reply_server.html old mode 100755 new mode 100644 index 344b45bc2..a992ff5fd --- a/osfmk/man/device_reply_server.html +++ b/osfmk/man/device_reply_server.html @@ -1 +1,58 @@ -
Function - Handle incoming data from kernel device driver.
boolean_t device_reply_server (mach_msg_header_t request_msg, mach_msg_header_t reply_msg);
The device_reply_server function is the MIG generated server handling function to handle messages from kernel device drivers. Such messages were sent in response to the various device_..._request... calls. It is assumed when using those calls that some task is listening for reply messages on the port named as a reply port to those calls. The device_reply_server function performs all necessary argument handling for a kernel message and calls one of the device server functions to interpret the message.
Functions: ds_device_open_reply, ds_device_write_reply, ds_device_write_reply_inband, ds_device_read_reply, ds_device_read_reply_inband, ds_device_read_reply_overwrite. \ No newline at end of file +
+Function - Handle incoming data from kernel device driver. +
+boolean_t device_reply_server + (mach_msg_header_t request_msg, + mach_msg_header_t reply_msg); ++
+
+
+The device_reply_server function is the MIG generated server handling +function to handle messages from kernel device drivers. Such +messages were sent in response to the various +device_..._request... +calls. It is assumed when using +those calls that some task is listening for reply messages on the port named as a +reply port to those calls. The device_reply_server +function performs all +necessary argument handling for a kernel message and calls one +of the device server functions to interpret the message. +
+
+
+Functions: +ds_device_open_reply, +ds_device_write_reply, +ds_device_write_reply_inband, +ds_device_read_reply, +ds_device_read_reply_inband, +ds_device_read_reply_overwrite.