1*bbb1b6f9SApple OSS Distributions<h2>device_read_overwrite</h2> 2*bbb1b6f9SApple OSS Distributions<hr> 3*bbb1b6f9SApple OSS Distributions<p><strong>System Trap</strong> -- Read a sequence of bytes from a specific device into my address space. 4*bbb1b6f9SApple OSS Distributions<h3>SYNOPSIS</h3> 5*bbb1b6f9SApple OSS Distributions<pre> 6*bbb1b6f9SApple OSS Distributions 7*bbb1b6f9SApple OSS Distributions<strong>kern_return_t device_read_overwrite</strong> 8*bbb1b6f9SApple OSS Distributions <strong>(mach_port_t</strong> <var>device</var>, 9*bbb1b6f9SApple OSS Distributions <strong>dev_mode_t</strong> <var>mode</var>, 10*bbb1b6f9SApple OSS Distributions <strong>recnum_t</strong> <var>recnum</var>, 11*bbb1b6f9SApple OSS Distributions <strong>io_buf_len_t</strong> <var>bytes_wanted</var>, 12*bbb1b6f9SApple OSS Distributions <strong>io_buf_pointer_t</strong> <var>data</var>, 13*bbb1b6f9SApple OSS Distributions <strong>mach_msg_type_number_t</strong> <var>data_count</var><strong>);</strong> 14*bbb1b6f9SApple OSS Distributions 15*bbb1b6f9SApple OSS Distributions 16*bbb1b6f9SApple OSS Distributions 17*bbb1b6f9SApple OSS Distributions<strong>kern_return_t device_read_overwrite_request</strong> 18*bbb1b6f9SApple OSS Distributions <strong>(mach_port_t</strong> <var>device</var>, 19*bbb1b6f9SApple OSS Distributions <strong>mach_port_t</strong> <var>reply_port</var>, 20*bbb1b6f9SApple OSS Distributions <strong>dev_mode_t</strong> <var>mode</var>, 21*bbb1b6f9SApple OSS Distributions <strong>recnum_t</strong> <var>recnum</var>, 22*bbb1b6f9SApple OSS Distributions <strong>io_buf_len_t</strong> <var>bytes_wanted</var>, 23*bbb1b6f9SApple OSS Distributions <strong>io_buf_pointer_t</strong> <var>data</var><strong>);</strong> 24*bbb1b6f9SApple OSS Distributions 25*bbb1b6f9SApple OSS Distributions 26*bbb1b6f9SApple OSS Distributions 27*bbb1b6f9SApple OSS Distributions<strong>kern_return_t ds_device_read_reply_overwrite</strong> 28*bbb1b6f9SApple OSS Distributions <strong>(mach_port_t</strong> <var>reply_port</var>, 29*bbb1b6f9SApple OSS Distributions <strong>kern_return_t</strong> <var>return_code</var>, 30*bbb1b6f9SApple OSS Distributions <strong>io_buf_len_t</strong> <var>data_count</var><strong>);</strong> 31*bbb1b6f9SApple OSS Distributions</pre> 32*bbb1b6f9SApple OSS Distributions<h3>PARAMETERS</h3> 33*bbb1b6f9SApple OSS Distributions<dl> 34*bbb1b6f9SApple OSS Distributions<p> 35*bbb1b6f9SApple OSS Distributions<dt> <var>device</var> 36*bbb1b6f9SApple OSS Distributions<dd> 37*bbb1b6f9SApple OSS Distributions[in device send right] 38*bbb1b6f9SApple OSS DistributionsA device port to the device to be read. 39*bbb1b6f9SApple OSS Distributions<p> 40*bbb1b6f9SApple OSS Distributions<dt> <var>reply_port</var> 41*bbb1b6f9SApple OSS Distributions<dd> 42*bbb1b6f9SApple OSS Distributions[in reply receive (to be converted to send-once) right] 43*bbb1b6f9SApple OSS DistributionsThe port to 44*bbb1b6f9SApple OSS Distributionswhich the reply message is to be sent. 45*bbb1b6f9SApple OSS Distributions<p> 46*bbb1b6f9SApple OSS Distributions<dt> <var>mode</var> 47*bbb1b6f9SApple OSS Distributions<dd> 48*bbb1b6f9SApple OSS Distributions[in scalar] 49*bbb1b6f9SApple OSS DistributionsI/O mode value. Meaningful options are: 50*bbb1b6f9SApple OSS Distributions<dl> 51*bbb1b6f9SApple OSS Distributions<p> 52*bbb1b6f9SApple OSS Distributions<dt> <strong>D_NOWAIT</strong> 53*bbb1b6f9SApple OSS Distributions<dd> 54*bbb1b6f9SApple OSS DistributionsDo not wait if data is unavailable. 55*bbb1b6f9SApple OSS Distributions</dl> 56*bbb1b6f9SApple OSS Distributions<p> 57*bbb1b6f9SApple OSS Distributions<dt> <var>recnum</var> 58*bbb1b6f9SApple OSS Distributions<dd> 59*bbb1b6f9SApple OSS Distributions[in scalar] 60*bbb1b6f9SApple OSS DistributionsRecord number to be read. 61*bbb1b6f9SApple OSS Distributions<p> 62*bbb1b6f9SApple OSS Distributions<dt> <var>bytes_wanted</var> 63*bbb1b6f9SApple OSS Distributions<dd> 64*bbb1b6f9SApple OSS Distributions[in scalar] 65*bbb1b6f9SApple OSS DistributionsSize of data transfer. 66*bbb1b6f9SApple OSS Distributions<p> 67*bbb1b6f9SApple OSS Distributions<dt> <var>return_code</var> 68*bbb1b6f9SApple OSS Distributions<dd> 69*bbb1b6f9SApple OSS Distributions[in scalar] 70*bbb1b6f9SApple OSS DistributionsThe return status code from the read. 71*bbb1b6f9SApple OSS Distributions<p> 72*bbb1b6f9SApple OSS Distributions<dt> <var>data</var> 73*bbb1b6f9SApple OSS Distributions<dd> 74*bbb1b6f9SApple OSS Distributions[pointer to in array of bytes] 75*bbb1b6f9SApple OSS DistributionsData buffer to be overwritten. 76*bbb1b6f9SApple OSS Distributions<p> 77*bbb1b6f9SApple OSS Distributions<dt> <var>data_count</var> 78*bbb1b6f9SApple OSS Distributions<dd> 79*bbb1b6f9SApple OSS Distributions[out scalar, in for asynchronous form] 80*bbb1b6f9SApple OSS DistributionsNumber of returned data bytes. 81*bbb1b6f9SApple OSS Distributions</dl> 82*bbb1b6f9SApple OSS Distributions<h3>DESCRIPTION</h3> 83*bbb1b6f9SApple OSS Distributions<p> 84*bbb1b6f9SApple OSS DistributionsThe <strong>device_read_overwrite</strong> system trap reads a sequence 85*bbb1b6f9SApple OSS Distributionsof bytes from a 86*bbb1b6f9SApple OSS Distributionsdevice object directly into the caller's address space. The 87*bbb1b6f9SApple OSS Distributionsmeaning of <var>recnum</var> as 88*bbb1b6f9SApple OSS Distributionswell as the specific operation performed is device dependent. 89*bbb1b6f9SApple OSS Distributions<h3>NOTES</h3> 90*bbb1b6f9SApple OSS Distributions<p> 91*bbb1b6f9SApple OSS DistributionsThe <strong>device_read_overwrite_request</strong> and <strong>device_read_reply_overwrite</strong> 92*bbb1b6f9SApple OSS Distributionscalls may be removed from the interface in favor of new asynchronous support. 93*bbb1b6f9SApple OSS Distributions<h3>RETURN VALUES</h3> 94*bbb1b6f9SApple OSS Distributions<p> 95*bbb1b6f9SApple OSS DistributionsOnly generic errors apply. 96*bbb1b6f9SApple OSS Distributions<h3>RELATED INFORMATION</h3> 97*bbb1b6f9SApple OSS Distributions<p> 98*bbb1b6f9SApple OSS DistributionsFunctions: 99*bbb1b6f9SApple OSS Distributions<a href="device_read.html"><strong>device_read</strong></a>, 100*bbb1b6f9SApple OSS Distributions<a href="device_read_inband.html"><strong>device_read_inband</strong></a>, 101*bbb1b6f9SApple OSS Distributions<a href="device_reply_server.html"><strong>device_reply_server</strong></a>. 102