From 720d6e7a718755c74fa6d68a0c0c8b5903727349 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 1 Feb 2011 11:53:29 -0800 Subject: [PATCH] Tweak for documentation --- include/SDL_atomic.h | 7 ++++--- 1 file 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)