From 0e5ce1aae7033d055f69729ac856eead988e924a Mon Sep 17 00:00:00 2001 From: Samy Al Bahra Date: Wed, 11 Dec 2013 18:59:15 -0500 Subject: [PATCH] ck_spinlock: Simple whitespace changes (wrap long lines). --- include/ck_spinlock.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/include/ck_spinlock.h b/include/ck_spinlock.h index abd2a54..4e052a9 100644 --- a/include/ck_spinlock.h +++ b/include/ck_spinlock.h @@ -836,7 +836,9 @@ struct ck_spinlock_hclh { typedef struct ck_spinlock_hclh ck_spinlock_hclh_t; CK_CC_INLINE static void -ck_spinlock_hclh_init(struct ck_spinlock_hclh **lock, struct ck_spinlock_hclh *unowned, int cluster_id) +ck_spinlock_hclh_init(struct ck_spinlock_hclh **lock, + struct ck_spinlock_hclh *unowned, + int cluster_id) { ck_pr_store_ptr(&unowned->previous, NULL); @@ -860,7 +862,9 @@ ck_spinlock_hclh_locked(struct ck_spinlock_hclh **queue) } CK_CC_INLINE static void -ck_spinlock_hclh_lock(struct ck_spinlock_hclh **glob_queue, struct ck_spinlock_hclh **local_queue, struct ck_spinlock_hclh *thread) +ck_spinlock_hclh_lock(struct ck_spinlock_hclh **glob_queue, + struct ck_spinlock_hclh **local_queue, + struct ck_spinlock_hclh *thread) { struct ck_spinlock_hclh *previous, *local_tail;