Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(584)

Side by Side Diff: include/core/SkBarriers.h

Issue 896553002: Atomics overhaul. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: warning Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/core/SkAtomics.h ('k') | include/core/SkMutex.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #ifndef SkBarriers_DEFINED
2 #define SkBarriers_DEFINED
3
4 // This file is not part of the public Skia API.
5 #include "SkTypes.h"
6
7 #if SK_HAS_COMPILER_FEATURE(thread_sanitizer)
8 #include "../ports/SkBarriers_tsan.h"
9 #elif defined(SK_CPU_ARM32) || defined(SK_CPU_ARM64)
10 #include "../ports/SkBarriers_arm.h"
11 #else
12 #include "../ports/SkBarriers_x86.h"
13 #endif
14
15 #endif//SkBarriers_DEFINED
OLDNEW
« no previous file with comments | « include/core/SkAtomics.h ('k') | include/core/SkMutex.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698