xref: /xnu-10002.61.3/osfmk/man/memory_object_data_unlock.html (revision 0f4c859e951fba394238ab619495c4e1d54d0f34)
1*0f4c859eSApple OSS Distributions<h2>memory_object_data_unlock</h2>
2*0f4c859eSApple OSS Distributions<hr>
3*0f4c859eSApple OSS Distributions<p>
4*0f4c859eSApple OSS Distributions<strong>Server Interface</strong> - Request that the memory manager change current access permission on the specified memory object's data.
5*0f4c859eSApple OSS Distributions<h3>SYNOPSIS</h3>
6*0f4c859eSApple OSS Distributions<pre>
7*0f4c859eSApple OSS Distributions<strong>kern_return_t   memory_object_data_unlock</strong>
8*0f4c859eSApple OSS Distributions                <strong>(memory_object_t</strong>                  <var>memory_object</var>,
9*0f4c859eSApple OSS Distributions                 <strong>memory_object_control_t</strong>         <var>memory_control</var>,
10*0f4c859eSApple OSS Distributions                 <strong>vm_offset_t</strong>                             <var>offset</var>,
11*0f4c859eSApple OSS Distributions                 <strong>vm_size_t</strong>                               <var>length</var>,
12*0f4c859eSApple OSS Distributions                 <strong>vm_prot_t</strong>                       <var>desired_access</var><strong>);</strong>
13*0f4c859eSApple OSS Distributions
14*0f4c859eSApple OSS Distributions
15*0f4c859eSApple OSS Distributions<strong>kern_return_t   seqnos_memory_object_data_unlock</strong>
16*0f4c859eSApple OSS Distributions                <strong>(memory_object_t</strong>                  <var>memory_object</var>,
17*0f4c859eSApple OSS Distributions                 <strong>mach_port_seqno_t</strong>                        <var>seqno</var>,
18*0f4c859eSApple OSS Distributions                 <strong>memory_object_control_t</strong>         <var>memory_control</var>,
19*0f4c859eSApple OSS Distributions                 <strong>vm_offset_t</strong>                             <var>offset</var>,
20*0f4c859eSApple OSS Distributions                 <strong>vm_size_t</strong>                               <var>length</var>,
21*0f4c859eSApple OSS Distributions                 <strong>vm_prot_t</strong>                       <var>desired_access</var><strong>);</strong>
22*0f4c859eSApple OSS Distributions</pre>
23*0f4c859eSApple OSS Distributions<h3>PARAMETERS</h3>
24*0f4c859eSApple OSS Distributions<dl>
25*0f4c859eSApple OSS Distributions<p>
26*0f4c859eSApple OSS Distributions<dt> <var>memory_object</var>
27*0f4c859eSApple OSS Distributions<dd>
28*0f4c859eSApple OSS Distributions[in abstract-memory-object (receive) right]
29*0f4c859eSApple OSS DistributionsThe abstract memory
30*0f4c859eSApple OSS Distributionsobject port that represents the memory object data.
31*0f4c859eSApple OSS Distributions<p>
32*0f4c859eSApple OSS Distributions<dt> <var>seqno</var>
33*0f4c859eSApple OSS Distributions<dd>
34*0f4c859eSApple OSS Distributions[in scalar]
35*0f4c859eSApple OSS DistributionsThe sequence number of this message relative to the abstract
36*0f4c859eSApple OSS Distributionsmemory object port.
37*0f4c859eSApple OSS Distributions<p>
38*0f4c859eSApple OSS Distributions<dt> <var>memory_control</var>
39*0f4c859eSApple OSS Distributions<dd>
40*0f4c859eSApple OSS Distributions[in memory-cache-control send right]
41*0f4c859eSApple OSS DistributionsThe memory cache control port
42*0f4c859eSApple OSS Distributionsto be used for a response by the memory manager.  If the memory
43*0f4c859eSApple OSS Distributionsobject has been supplied to more than one kernel, this parameter
44*0f4c859eSApple OSS Distributionsidentifies the kernel that is making the call.
45*0f4c859eSApple OSS Distributions<p>
46*0f4c859eSApple OSS Distributions<dt> <var>offset</var>
47*0f4c859eSApple OSS Distributions<dd>
48*0f4c859eSApple OSS Distributions[in scalar]
49*0f4c859eSApple OSS DistributionsThe offset within the memory object.
50*0f4c859eSApple OSS Distributions<p>
51*0f4c859eSApple OSS Distributions<dt> <var>length</var>
52*0f4c859eSApple OSS Distributions<dd>
53*0f4c859eSApple OSS Distributions[in scalar]
54*0f4c859eSApple OSS DistributionsThe number of bytes to which the access applies, starting at
55*0f4c859eSApple OSS Distributions<var>offset</var>.  The number converts to an integral number of memory object
56*0f4c859eSApple OSS Distributionspages.
57*0f4c859eSApple OSS Distributions<p>
58*0f4c859eSApple OSS Distributions<dt> <var>desired_access</var>
59*0f4c859eSApple OSS Distributions<dd>
60*0f4c859eSApple OSS Distributions[in scalar]
61*0f4c859eSApple OSS DistributionsThe memory access modes requested for the cached data.
62*0f4c859eSApple OSS DistributionsPossible values are obtained by or'ing together the following values:
63*0f4c859eSApple OSS Distributions<dl>
64*0f4c859eSApple OSS Distributions<p>
65*0f4c859eSApple OSS Distributions<dt> <strong>VM_PROT_READ</strong>
66*0f4c859eSApple OSS Distributions<dd>
67*0f4c859eSApple OSS DistributionsAllows read access.
68*0f4c859eSApple OSS Distributions<p>
69*0f4c859eSApple OSS Distributions<dt> <strong>VM_PROT_WRITE</strong>
70*0f4c859eSApple OSS Distributions<dd>
71*0f4c859eSApple OSS DistributionsAllows write access.
72*0f4c859eSApple OSS Distributions<p>
73*0f4c859eSApple OSS Distributions<dt> <strong>VM_PROT_EXECUTE</strong>
74*0f4c859eSApple OSS Distributions<dd>
75*0f4c859eSApple OSS DistributionsAllows execute access.
76*0f4c859eSApple OSS Distributions</dl>
77*0f4c859eSApple OSS Distributions</dl>
78*0f4c859eSApple OSS Distributions<h3>DESCRIPTION</h3>
79*0f4c859eSApple OSS Distributions<p>
80*0f4c859eSApple OSS DistributionsA <strong>memory_object_data_unlock</strong> function is called as the
81*0f4c859eSApple OSS Distributionsresult of a kernel
82*0f4c859eSApple OSS Distributionsmessage requesting the memory manager to permit at least the
83*0f4c859eSApple OSS Distributionsdesired access to the
84*0f4c859eSApple OSS Distributionsspecified data cached by the kernel.  The memory manager is expected
85*0f4c859eSApple OSS Distributionsto use the
86*0f4c859eSApple OSS Distributions<strong>memory_object_lock_request</strong> call in response.
87*0f4c859eSApple OSS Distributions<h3>RETURN VALUES</h3>
88*0f4c859eSApple OSS Distributions<p>
89*0f4c859eSApple OSS DistributionsOnly generic errors apply.
90*0f4c859eSApple OSS Distributions<h3>RELATED INFORMATION</h3>
91*0f4c859eSApple OSS Distributions<p>
92*0f4c859eSApple OSS DistributionsFunctions:
93*0f4c859eSApple OSS Distributions<a href="MO_lock_completed.html"><strong>memory_object_lock_completed</strong></a>,
94*0f4c859eSApple OSS Distributions<a href="memory_object_lock_request.html"><strong>memory_object_lock_request</strong></a>,
95*0f4c859eSApple OSS Distributions<a href="memory_object_server.html"><strong>memory_object_server</strong></a>,
96*0f4c859eSApple OSS Distributions<a href="SMO_server.html"><strong>seqnos_memory_object_server</strong></a>.
97