1 <h2>device_read_overwrite_async
</h2>
4 <strong>System Trap
</strong> - Read a sequence of bytes from a device object into the caller's
7 <strong>kern_return_t device_read_overwrite_async
</strong>
8 <strong>(mach_port_t
</strong> <var>device
</var>,
9 <strong>mach_port_t
</strong> <var>queue
</var>,
10 <strong>mach_port_t
</strong> <var>request_id
</var>,
11 <strong>dev_mode_t
</strong> <var>mode
</var>,
12 <strong>recnum_t
</strong> <var>recnum
</var>,
13 <strong>io_buf_len_t
</strong> <var>bytes_wanted
</var>,
14 <strong>io_buf_ptr_t
</strong> <var>buffer
</var><strong>);
</strong>
19 <dt> <var>device
</var>
21 [in device send right] A device port to the device to be read.
25 [in io_done queue send right] The port returned from the
26 io_done_queue_create call.
28 <dt> <var>request_id
</var>
30 [in send right] An unique request identifier that will be passed back as
31 part of the io_done_result structure.
35 [in scalar] I/O mode value. Meaningful options are:
38 <dt> <strong>D_NOWAIT
</strong>
40 Do not wait if data is unavailable.
43 <dt> <var>recnum
</var>
45 [in scalar] Record number to be read.
47 <dt> <var>bytes_wanted
</var>
49 [in scalar] Size of data transfer.
51 <dt> <var>buffer
</var>
53 [pointer to in array of bytes] Data buffer to be overwritten.
57 The
<strong>device_read_overwrite
</strong> system trap enqueues a read operation for a
58 sequence of bytes from a device object to be placed directly into
59 the caller's address space. The meaning of recnum as well as the
60 specific operation performed is device dependent.
61 <h3>RETURN VALUES
</h3>
63 <strong>device_read_overwrite_async
</strong> returns only invalid parameter errors.
64 <h3>RELATED INFORMATION
</h3>
67 <a href=
"device_read_async.html"><strong>device_read_async
</strong></a>,
68 <a href=
"device_read_async_inband.html"><strong>device_read_async_inband
</strong></a>,
69 <a href=
"device_write_async.html"><strong>device_write_async
</strong></a>,
70 <a href=
"device_write_async_inband.html"><strong>device_write_async_inband
</strong></a>,
71 <a href=
"io_done_queue_create.html"><strong>io_done_queue_create
</strong></a>.