summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2012-08-21 14:27:32 -0600
committerEric Blake <eblake@redhat.com>2012-08-21 14:27:32 -0600
commitcd8f8c8de7190ae4da5fb04d08d3e31aae4ab690 (patch)
tree9a4b77a98c07e155bbd2f976e63d91ede5288d86 /src/util
parentatomic: mark header functions static (diff)
downloadlibvirt-cd8f8c8de7190ae4da5fb04d08d3e31aae4ab690.tar.gz
libvirt-cd8f8c8de7190ae4da5fb04d08d3e31aae4ab690.tar.bz2
libvirt-cd8f8c8de7190ae4da5fb04d08d3e31aae4ab690.zip
atomic: fix whitespace in previous patch
Diffstat (limited to 'src/util')
-rw-r--r--src/util/viratomic.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/util/viratomic.h b/src/util/viratomic.h
index 95c7f5c75..bce8dee72 100644
--- a/src/util/viratomic.h
+++ b/src/util/viratomic.h
@@ -52,7 +52,7 @@ VIR_STATIC int virAtomicIntGet(volatile int *atomic)
* (after the set)
*/
VIR_STATIC void virAtomicIntSet(volatile int *atomic,
- int newval)
+ int newval)
ATTRIBUTE_NONNULL(1);
/**
@@ -93,8 +93,8 @@ VIR_STATIC bool virAtomicIntDecAndTest(volatile int *atomic)
* This call acts as a full compiler and hardware memory barrier.
*/
VIR_STATIC bool virAtomicIntCompareExchange(volatile int *atomic,
- int oldval,
- int newval)
+ int oldval,
+ int newval)
ATTRIBUTE_NONNULL(1);
/**
@@ -107,7 +107,7 @@ VIR_STATIC bool virAtomicIntCompareExchange(volatile int *atomic,
* This call acts as a full compiler and hardware memory barrier.
*/
VIR_STATIC int virAtomicIntAdd(volatile int *atomic,
- int val)
+ int val)
ATTRIBUTE_NONNULL(1);
/**
@@ -121,7 +121,7 @@ VIR_STATIC int virAtomicIntAdd(volatile int *atomic,
* { tmp = *atomic; *atomic &= val; return tmp; }
*/
VIR_STATIC unsigned int virAtomicIntAnd(volatile unsigned int *atomic,
- unsigned int val)
+ unsigned int val)
ATTRIBUTE_NONNULL(1);
/**
@@ -135,7 +135,7 @@ VIR_STATIC unsigned int virAtomicIntAnd(volatile unsigned int *atomic,
* This call acts as a full compiler and hardware memory barrier.
*/
VIR_STATIC unsigned int virAtomicIntOr(volatile unsigned int *atomic,
- unsigned int val)
+ unsigned int val)
ATTRIBUTE_NONNULL(1);
/**
@@ -149,7 +149,7 @@ VIR_STATIC unsigned int virAtomicIntOr(volatile unsigned int *atomic,
* This call acts as a full compiler and hardware memory barrier.
*/
VIR_STATIC unsigned int virAtomicIntXor(volatile unsigned int *atomic,
- unsigned int val)
+ unsigned int val)
ATTRIBUTE_NONNULL(1);
# undef VIR_STATIC