aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkReadBuffer.h
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2016-04-20 10:54:54 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-04-20 10:54:54 -0700
commitdf02d338be8e3c1c50b48a3a9faa582703a39c07 (patch)
tree1ca01054c698caae5233202276ac7a9136fca156 /src/core/SkReadBuffer.h
parent82996b82005d54195d832bf6eb8e472af41a615a (diff)
SkOnce: 2 bytes -> 1 byte
This uses the same logic we worked out for SkOncePtr to reduce the memory footprint of SkOnce from a done byte and lock byte to a single 3-state byte: - NotStarted: no thread has tried to run fn() yet - Active: a thread is running fn() - Done: fn() is complete Threads which see Done return immediately. Threads which see NotStarted try to move to Active, run fn(), then move to Done. Threads which see Active spin until the active thread moves to Done. This additionally fixes a too-weak memory order bug in SkOncePtr, and adds a big note to explain. BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1904483003 Review URL: https://codereview.chromium.org/1904483003
Diffstat (limited to 'src/core/SkReadBuffer.h')
0 files changed, 0 insertions, 0 deletions