Last active
March 22, 2024 08:39
-
-
Save ferd/6030877 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-spec gc_count(non_neg_integer(), binary()) -> non_neg_integer(). | |
gc_count(PreviousCounter, Bin) -> | |
case byte_size(Bin) of | |
N when N >= 64 -> % refc binary | |
Count = N + PreviousCounter | |
case Count >= ?THRESHOLD of | |
true -> | |
erlang:garbage_collect(), | |
0; | |
false -> | |
Count | |
end; | |
N -> % heap binary | |
PreviousCounter+N | |
end. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The variable 'Count' is unused.
The variable 'NewCount' is unbound.