1*27b03b36SApple OSS Distributions<h2>default_pager_backing_store_create</h2> 2*27b03b36SApple OSS Distributions<hr> 3*27b03b36SApple OSS Distributions<p> 4*27b03b36SApple OSS Distributions<strong>Server Interface</strong> - Create a backing storage object. 5*27b03b36SApple OSS Distributions<h3>SYNOPSIS</h3> 6*27b03b36SApple OSS Distributions<pre> 7*27b03b36SApple OSS Distributions<strong>#include< mach/default_pager_object.h></strong> 8*27b03b36SApple OSS Distributions 9*27b03b36SApple OSS Distributions<strong>kern_return_t default_pager_backing_store_create</strong> 10*27b03b36SApple OSS Distributions <strong>(mach_port_t</strong> <var>pager</var>, 11*27b03b36SApple OSS Distributions <strong>int</strong> <var>priority</var>, 12*27b03b36SApple OSS Distributions <strong>int</strong> <var>clsize</var>, 13*27b03b36SApple OSS Distributions <strong>mach_port_t</strong> <var>backing_store</var><strong>);</strong> 14*27b03b36SApple OSS Distributions</pre> 15*27b03b36SApple OSS Distributions<h3>PARAMETERS</h3> 16*27b03b36SApple OSS Distributions<dl> 17*27b03b36SApple OSS Distributions<p> 18*27b03b36SApple OSS Distributions<dt> <var>pager</var> 19*27b03b36SApple OSS Distributions<dd> 20*27b03b36SApple OSS Distributions[in default pager (receive) right] The default pager service port. 21*27b03b36SApple OSS Distributions<p> 22*27b03b36SApple OSS Distributions<dt> <var>priority</var> 23*27b03b36SApple OSS Distributions<dd> 24*27b03b36SApple OSS Distributions[in scalar] The scheduling priority for the backing store service 25*27b03b36SApple OSS Distributionsthread(s). 26*27b03b36SApple OSS Distributions<p> 27*27b03b36SApple OSS Distributions<dt> <var>clsize</var> 28*27b03b36SApple OSS Distributions<dd> 29*27b03b36SApple OSS Distributions[in scalar] The preferred cluster size (in bytes) for the backing 30*27b03b36SApple OSS Distributionsstore object. 31*27b03b36SApple OSS Distributions<p> 32*27b03b36SApple OSS Distributions<dt> <var>backing_store</var> 33*27b03b36SApple OSS Distributions<dd> 34*27b03b36SApple OSS Distributions[out backing store (receive) right] The port used to manipulate the 35*27b03b36SApple OSS Distributionscreated backing store. 36*27b03b36SApple OSS Distributions</dl> 37*27b03b36SApple OSS Distributions<h3>DESCRIPTION</h3> 38*27b03b36SApple OSS Distributions<p> 39*27b03b36SApple OSS DistributionsThe <strong>default_pager_backing_store_create</strong> function is called to create a 40*27b03b36SApple OSS Distributionsnew backing storage object. The kernel does not make this call itself 41*27b03b36SApple OSS Distributions(which is why it can be a synchronous call); this request is only 42*27b03b36SApple OSS Distributionsissued by tasks (privileged) holding the default pager service port. 43*27b03b36SApple OSS Distributions<h3>RETURN VALUES</h3> 44*27b03b36SApple OSS Distributions<dl> 45*27b03b36SApple OSS Distributions<p> 46*27b03b36SApple OSS Distributions<dt> <strong>KERN_FAILURE</strong> 47*27b03b36SApple OSS Distributions<dd> 48*27b03b36SApple OSS DistributionsThe default pager does not support this operation. 49*27b03b36SApple OSS Distributions<p> 50*27b03b36SApple OSS Distributions<dt> <strong>KERN_INVALID_ARGUMENT</strong> 51*27b03b36SApple OSS Distributions<dd> 52*27b03b36SApple OSS DistributionsThe pager port does not represent a valid default pager. 53*27b03b36SApple OSS Distributions<p> 54*27b03b36SApple OSS Distributions<dt> <strong>KERN_SUCCESS</strong> 55*27b03b36SApple OSS Distributions<dd> 56*27b03b36SApple OSS DistributionsThe operation was successful. 57*27b03b36SApple OSS Distributions</dl> 58*27b03b36SApple OSS Distributions<h3>RELATED INFORMATION</h3> 59*27b03b36SApple OSS Distributions<p> 60*27b03b36SApple OSS DistributionsFunctions: 61*27b03b36SApple OSS Distributions<a href="DP_backing_store_delete.html"><strong>default_pager_backing_store_delete</strong></a>, 62*27b03b36SApple OSS Distributions<a href="DP_backing_store_info.html"><strong>default_pager_backing_store_info</strong></a>. 63