1 <h2>device_write_async_inband
</h2>
4 <strong>System Trap
</strong> - Write a sequence of bytes "inband" to a device object.
7 <strong>kern_return_t device_write_async_inband
</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_ptr_t
</strong> <var>data
</var>,
14 <strong>io_buf_len_t
</strong> <var>bytes_wanted
</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
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.
49 [pointer to in array of bytes] Data bytes to be written.
51 <dt> <var>bytes_wanted
</var>
53 [in scalar] Size of data transfer.
57 The
<strong>device_write_async_inband
</strong> function enqueues a write operation for
58 a sequence of bytes to a device object. The meaning of recnum as
59 well as the specific operation performed is device dependent. This
60 call differs from
<strong>device_write_async
</strong> in that the bytes to be written
61 are sent "inband" in the request IPC message.
62 <h3>RETURN VALUES
</h3>
64 <strong>device_write_async_inband
</strong> returns only invalid parameter errors.
65 <h3>RELATED INFORMATION
</h3>
68 <a href=
"device_read_async_inband.html"><strong>device_read_async_inband
</strong></a>,
69 <a href=
"DR_overwrite_async.html"><strong>device_read_overwrite_async
</strong></a>,
70 <a href=
"device_write_async.html"><strong>device_write_async
</strong></a>,
71 <a href=
"io_done_queue_create.html"><strong>io_done_queue_create
</strong></a>.