diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-05-12 10:22:26 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-05-12 10:22:26 -0700 |
commit | cdf2822743b3beeb37ebc3deea8e08b6130698c5 (patch) | |
tree | b7946314d79e8df95eb16703b65832e20f7ee620 /html/061text.mu.html | |
parent | bd222553d7bc7d91d3eebae5639b01f58c8f7c75 (diff) | |
download | mu-cdf2822743b3beeb37ebc3deea8e08b6130698c5.tar.gz |
4242 - get rid of refcounts entirely
We're going to lean back into the experiment of commit 4179 back in Jan. If we delete memory it's up to us to ensure no pointers into it survive. Since deep-copy depends on our refcounting infrastructure, it's gone as well. So we're going to have to start watching out for pointers shared over channels.
Diffstat (limited to 'html/061text.mu.html')
-rw-r--r-- | html/061text.mu.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/html/061text.mu.html b/html/061text.mu.html index 1cf8aa34..d069e621 100644 --- a/html/061text.mu.html +++ b/html/061text.mu.html @@ -183,17 +183,17 @@ if ('onhashchange' in window) { <span id="L122" class="LineNr"> 122 </span> data:&:@:_elem <span id="L123" class="LineNr"> 123 </span>] <span id="L124" class="LineNr"> 124 </span> -<span id="L125" class="LineNr"> 125 </span><span class="muRecipe">def</span> <a href='061text.mu.html#L125'>new-buffer</a> <a href='075channel.mu.html#L399'>capacity</a>:num<span class="muRecipe"> -> </span>result:&:<a href='061text.mu.html#L120'>buffer</a>:_elem [ +<span id="L125" class="LineNr"> 125 </span><span class="muRecipe">def</span> <a href='061text.mu.html#L125'>new-buffer</a> <a href='075channel.mu.html#L391'>capacity</a>:num<span class="muRecipe"> -> </span>result:&:<a href='061text.mu.html#L120'>buffer</a>:_elem [ <span id="L126" class="LineNr"> 126 </span> <span class="Constant">local-scope</span> <span id="L127" class="LineNr"> 127 </span> <span class="Constant">load-inputs</span> <span id="L128" class="LineNr"> 128 </span> result <span class="Special"><-</span> new <span class="Delimiter">{</span>(buffer _elem): type<span class="Delimiter">}</span> <span id="L129" class="LineNr"> 129 </span> *result <span class="Special"><-</span> put *result, <span class="Constant">length:offset</span>,<span class="Constant"> 0</span> <span id="L130" class="LineNr"> 130 </span> <span class="Delimiter">{</span> -<span id="L131" class="LineNr"> 131 </span> <span class="muControl">break-if</span> <a href='075channel.mu.html#L399'>capacity</a> +<span id="L131" class="LineNr"> 131 </span> <span class="muControl">break-if</span> <a href='075channel.mu.html#L391'>capacity</a> <span id="L132" class="LineNr"> 132 </span> <span class="Comment"># capacity not provided</span> -<span id="L133" class="LineNr"> 133 </span> <a href='075channel.mu.html#L399'>capacity</a> <span class="Special"><-</span> copy<span class="Constant"> 10</span> +<span id="L133" class="LineNr"> 133 </span> <a href='075channel.mu.html#L391'>capacity</a> <span class="Special"><-</span> copy<span class="Constant"> 10</span> <span id="L134" class="LineNr"> 134 </span> <span class="Delimiter">}</span> -<span id="L135" class="LineNr"> 135 </span> data:&:@:_elem <span class="Special"><-</span> new <span class="Constant">_elem:type</span>, <a href='075channel.mu.html#L399'>capacity</a> +<span id="L135" class="LineNr"> 135 </span> data:&:@:_elem <span class="Special"><-</span> new <span class="Constant">_elem:type</span>, <a href='075channel.mu.html#L391'>capacity</a> <span id="L136" class="LineNr"> 136 </span> *result <span class="Special"><-</span> put *result, <span class="Constant">data:offset</span>, data <span id="L137" class="LineNr"> 137 </span> <span class="muControl"> return</span> result <span id="L138" class="LineNr"> 138 </span>] @@ -224,8 +224,8 @@ if ('onhashchange' in window) { <span id="L163" class="LineNr"> 163 </span> <span class="Constant">load-inputs</span> <span id="L164" class="LineNr"> 164 </span> len:num <span class="Special"><-</span> get *in, <span class="Constant">length:offset</span> <span id="L165" class="LineNr"> 165 </span> s:&:@:_elem <span class="Special"><-</span> get *in, <span class="Constant">data:offset</span> -<span id="L166" class="LineNr"> 166 </span> <a href='075channel.mu.html#L399'>capacity</a>:num <span class="Special"><-</span> length *s -<span id="L167" class="LineNr"> 167 </span> result <span class="Special"><-</span> greater-or-equal len, <a href='075channel.mu.html#L399'>capacity</a> +<span id="L166" class="LineNr"> 166 </span> <a href='075channel.mu.html#L391'>capacity</a>:num <span class="Special"><-</span> length *s +<span id="L167" class="LineNr"> 167 </span> result <span class="Special"><-</span> greater-or-equal len, <a href='075channel.mu.html#L391'>capacity</a> <span id="L168" class="LineNr"> 168 </span>] <span id="L169" class="LineNr"> 169 </span> <span id="L170" class="LineNr"> 170 </span><span class="Comment"># most broadly applicable definition of append to a buffer</span> |