From 1d5beccd929887caeba3a058d550abee8da13a89 Mon Sep 17 00:00:00 2001 From: Samy Al Bahra Date: Thu, 21 May 2015 12:55:25 -0400 Subject: [PATCH] whitespace/ck_epoch: Additional column wrap. --- src/ck_epoch.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/ck_epoch.c b/src/ck_epoch.c index 6425506..e241a38 100644 --- a/src/ck_epoch.c +++ b/src/ck_epoch.c @@ -131,8 +131,10 @@ enum { CK_EPOCH_STATE_FREE = 1 }; -CK_STACK_CONTAINER(struct ck_epoch_record, record_next, ck_epoch_record_container) -CK_STACK_CONTAINER(struct ck_epoch_entry, stack_entry, ck_epoch_entry_container) +CK_STACK_CONTAINER(struct ck_epoch_record, record_next, + ck_epoch_record_container) +CK_STACK_CONTAINER(struct ck_epoch_entry, stack_entry, + ck_epoch_entry_container) void ck_epoch_init(struct ck_epoch *global) @@ -322,7 +324,8 @@ ck_epoch_synchronize(struct ck_epoch *global, struct ck_epoch_record *record) * Determine whether all threads have observed the current * epoch. We can get away without a fence here. */ - while (cr = ck_epoch_scan(global, cr, delta, &active), cr != NULL) { + while (cr = ck_epoch_scan(global, cr, delta, &active), + cr != NULL) { unsigned int e_d; ck_pr_stall();