<div dir="ltr">I try to find _fixLifetime in standard library and finally can&#39;t :( But function exists in reality and I can call it.<div>I also found some discussion about <a href="https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20151228/005017.html">https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20151228/005017.html</a> </div><div>So as I can understand it&#39;s not fixed API to manage scoped life and probably will be changed in the future.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Feb 11, 2016 at 5:38 PM, Dmitri Gribenko <span dir="ltr">&lt;<a href="mailto:gribozavr@gmail.com" target="_blank">gribozavr@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On Thu, Feb 11, 2016 at 12:19 AM, Dmitri Gribenko &lt;<a href="mailto:gribozavr@gmail.com">gribozavr@gmail.com</a>&gt; wrote:<br>
&gt; On Thu, Feb 11, 2016 at 12:13 AM, Sergey Kuratov &lt;<a href="mailto:ksubox.swift@gmail.com">ksubox.swift@gmail.com</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt; Can I define similar for my Swift classes ?<br>
&gt;&gt;<br>
&gt;&gt;&gt;No.  What would be your use case?<br>
&gt;&gt;<br>
&gt;&gt; I also could have my Swift object with several members, but when send to<br>
&gt;&gt; native part would like to send address exactly one of members.<br>
&gt;&gt; Something like this:<br>
&gt;&gt;<br>
&gt;&gt; // Swift part<br>
&gt;&gt;<br>
&gt;&gt; class ABlock {<br>
&gt;&gt;<br>
&gt;&gt; var channels = 2<br>
&gt;&gt;<br>
&gt;&gt; var samplerate = 44100<br>
&gt;&gt;<br>
&gt;&gt; var  buffer : UnsafeMutablePointer&lt;Int16&gt;<br>
&gt;&gt;<br>
&gt;&gt; init() {<br>
&gt;&gt;<br>
&gt;&gt; buffer = UnsafeMutablePointer&lt;Int16&gt;.alloc(2048)<br>
&gt;&gt;<br>
&gt;&gt; }<br>
&gt;&gt;<br>
&gt;&gt; deinit {<br>
&gt;&gt;<br>
&gt;&gt; buffer.dealloc(2048)<br>
&gt;&gt;<br>
&gt;&gt; }<br>
&gt;&gt;<br>
&gt;&gt; }<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; var block = ABlock<br>
&gt;&gt; generate(block) &lt;- here I would like to send address of ABlock.buffer to<br>
&gt;&gt; native part<br>
&gt;&gt;<br>
&gt;&gt; // C part<br>
&gt;&gt; void generate(int16_t *buf) {<br>
&gt;&gt; ...<br>
&gt;&gt; }<br>
&gt;<br>
&gt; I&#39;d recommend to write a Swift wrapper for your C code that accepts<br>
&gt; the class instance, and calls the generate() function with appropriate<br>
&gt; arguments.<br>
<br>
</div></div>Oh, and since your class stores an unsafe pointer (and not an array),<br>
you&#39;d need to call _fixLifetime() on it after the your C function<br>
returns, to ensure that the class instance can&#39;t be deallocated before<br>
then.  Unless you have other requirements though, I&#39;d recommend just<br>
storing an array though.  Then you wouldn&#39;t need to care about<br>
_fixLifetime().<br>
<div class="HOEnZb"><div class="h5"><br>
Dmitri<br>
<br>
--<br>
main(i,j){for(i=2;;i++){for(j=2;j&lt;i;j++){if(!(i%j)){j=0;break;}}if<br>
(j){printf(&quot;%d\n&quot;,i);}}} /*Dmitri Gribenko &lt;<a href="mailto:gribozavr@gmail.com">gribozavr@gmail.com</a>&gt;*/<br>
</div></div></blockquote></div><br></div>