diff options
author | Derek Sollenberger <djsollen@google.com> | 2011-05-16 13:07:43 -0400 |
---|---|---|
committer | Derek Sollenberger <djsollen@google.com> | 2011-05-17 07:52:26 -0400 |
commit | 35e2e62b55598210f6999fc2ea26ff8f41446ffe (patch) | |
tree | 4fca2ca7d02d58e56d9b146b770ecb1e8da8d8af /include/core/SkThread_platform.h | |
parent | f173507281c41ccde5f0ef849cd720639d7e25d0 (diff) | |
download | external_skia-35e2e62b55598210f6999fc2ea26ff8f41446ffe.zip external_skia-35e2e62b55598210f6999fc2ea26ff8f41446ffe.tar.gz external_skia-35e2e62b55598210f6999fc2ea26ff8f41446ffe.tar.bz2 |
Skia Merge (revision 1327)
Change-Id: I46f41274d07a3d7bac4728f8841c7f5e89dc9181
Diffstat (limited to 'include/core/SkThread_platform.h')
-rw-r--r-- | include/core/SkThread_platform.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/core/SkThread_platform.h b/include/core/SkThread_platform.h index c6fd058..f33f5dc 100644 --- a/include/core/SkThread_platform.h +++ b/include/core/SkThread_platform.h @@ -41,12 +41,12 @@ public: /** Implemented by the porting layer, this function adds 1 to the int specified by the address (in a thread-safe manner), and returns the previous value. */ -int32_t sk_atomic_inc(int32_t* addr); +SK_API int32_t sk_atomic_inc(int32_t* addr); /** Implemented by the porting layer, this function subtracts 1 to the int specified by the address (in a thread-safe manner), and returns the previous value. */ -int32_t sk_atomic_dec(int32_t* addr); +SK_API int32_t sk_atomic_dec(int32_t* addr); class SkMutex { public: |