summaryrefslogtreecommitdiff
path: root/include/SDL_atomic.h
diff options
context:
space:
mode:
authorSam Lantinga <slouken@libsdl.org>2011-02-01 11:53:29 -0800
committerSam Lantinga <slouken@libsdl.org>2011-02-01 11:53:29 -0800
commit449404a695b0fbd076b9fb5af5991744637ebc4f (patch)
treee1d50b6186e865ed9599185d8dc9deccdc2684d9 /include/SDL_atomic.h
parent34cd3cfb21aa03552ebed60b84a8d9b45057b742 (diff)
downloadsdl-449404a695b0fbd076b9fb5af5991744637ebc4f.tar.gz
Tweak for documentation
Diffstat (limited to 'include/SDL_atomic.h')
-rw-r--r--include/SDL_atomic.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/SDL_atomic.h b/include/SDL_atomic.h
index 7259f7c44..2d19a498a 100644
--- a/include/SDL_atomic.h
+++ b/include/SDL_atomic.h
@@ -123,9 +123,10 @@ extern DECLSPEC void SDLCALL SDL_AtomicUnlock(SDL_SpinLock *lock);
/*@}*//*SDL AtomicLock*/
-/* The compiler barrier prevents the compiler from reordering
- reads and writes to globally visible variables across the call.
-*/
+/**
+ * The compiler barrier prevents the compiler from reordering
+ * reads and writes to globally visible variables across the call.
+ */
#ifdef _MSC_VER
void _ReadWriteBarrier(void);
#pragma intrinsic(_ReadWriteBarrier)