X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/9bccf70c0258c7cac2dcb80011b2a964d884c552..cb3231590a3c94ab4375e2228bd5e86b0cf1ad7e:/osfmk/man/device_read_overwrite.html?ds=sidebyside diff --git a/osfmk/man/device_read_overwrite.html b/osfmk/man/device_read_overwrite.html old mode 100755 new mode 100644 index 8551c9144..6d81e4ca0 --- a/osfmk/man/device_read_overwrite.html +++ b/osfmk/man/device_read_overwrite.html @@ -1 +1,101 @@ -
System Trap -- Read a sequence of bytes from a specific device into my address space.
kern_return_t device_read_overwrite (mach_port_t device, dev_mode_t mode, recnum_t recnum, io_buf_len_t bytes_wanted, io_buf_pointer_t data, mach_msg_type_number_t data_count); kern_return_t device_read_overwrite_request (mach_port_t device, mach_port_t reply_port, dev_mode_t mode, recnum_t recnum, io_buf_len_t bytes_wanted, io_buf_pointer_t data); kern_return_t ds_device_read_reply_overwrite (mach_port_t reply_port, kern_return_t return_code, io_buf_len_t data_count);
The device_read_overwrite system trap reads a sequence of bytes from a device object directly into the caller's address space. The meaning of recnum as well as the specific operation performed is device dependent.
The device_read_overwrite_request and device_read_reply_overwrite calls may be removed from the interface in favor of new asynchronous support.
Only generic errors apply.
Functions: device_read, device_read_inband, device_reply_server. \ No newline at end of file +
System Trap -- Read a sequence of bytes from a specific device into my address space. +
+ +kern_return_t device_read_overwrite + (mach_port_t device, + dev_mode_t mode, + recnum_t recnum, + io_buf_len_t bytes_wanted, + io_buf_pointer_t data, + mach_msg_type_number_t data_count); + + + +kern_return_t device_read_overwrite_request + (mach_port_t device, + mach_port_t reply_port, + dev_mode_t mode, + recnum_t recnum, + io_buf_len_t bytes_wanted, + io_buf_pointer_t data); + + + +kern_return_t ds_device_read_reply_overwrite + (mach_port_t reply_port, + kern_return_t return_code, + io_buf_len_t data_count); ++
+
+
+
+
+
+
+
+
+
+The device_read_overwrite system trap reads a sequence +of bytes from a +device object directly into the caller's address space. The +meaning of recnum as +well as the specific operation performed is device dependent. +
+The device_read_overwrite_request and device_read_reply_overwrite +calls may be removed from the interface in favor of new asynchronous support. +
+Only generic errors apply. +
+Functions: +device_read, +device_read_inband, +device_reply_server.