From a91717d2adcd8088533e2d86a5ff9a23b3aea2ef Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 1 May 2019 20:34:12 +1000 Subject: Cleanup: comments (long lines) in atomic --- intern/atomic/atomic_ops.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'intern/atomic/atomic_ops.h') diff --git a/intern/atomic/atomic_ops.h b/intern/atomic/atomic_ops.h index 9d4ec67ba97..106e19567da 100644 --- a/intern/atomic/atomic_ops.h +++ b/intern/atomic/atomic_ops.h @@ -126,15 +126,17 @@ ATOMIC_INLINE void *atomic_cas_ptr(void **v, void *old, void *_new); ATOMIC_INLINE float atomic_cas_float(float *v, float old, float _new); -/* WARNING! Float 'atomics' are really faked ones, those are actually closer to some kind of spinlock-sync'ed operation, - * which means they are only efficient if collisions are highly unlikely (i.e. if probability of two threads - * working on the same pointer at the same time is very low). */ +/* WARNING! Float 'atomics' are really faked ones, those are actually closer to some kind of + * spinlock-sync'ed operation, which means they are only efficient if collisions are highly + * unlikely (i.e. if probability of two threads working on the same pointer at the same time is + * very low). */ ATOMIC_INLINE float atomic_add_and_fetch_fl(float *p, const float x); /******************************************************************************/ /* Include system-dependent implementations. */ -/* Note that we are using _unix flavor as fallback here (it will raise precompiler errors as needed). */ +/* Note that we are using _unix flavor as fallback here + * (it will raise precompiler errors as needed). */ #if defined(_MSC_VER) # include "intern/atomic_ops_msvc.h" #else -- cgit v1.2.3