Skip to content

Commit 57cc6f7

Browse files
committed
Indent
1 parent a27d725 commit 57cc6f7

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

cmap/test-cmap.c

+7-6
Original file line numberDiff line numberDiff line change
@@ -129,13 +129,14 @@ static void *update_cmap(void *args)
129129
MAP_FOREACH_WITH_HASH (elem, node, hash, cmap_state) {
130130
if (elem->value > max_value) {
131131
cmap_remove(&cmap_values, &elem->node);
132-
/* FIXME: If we free 'elem' directly, it may lead to use-after-free
133-
* when the reader thread obtains it. To deal with the issue, here
134-
* we just simply keep it in a list and release the memory at the end
135-
* of program.
132+
/* FIXME: If we free 'elem' directly, it may lead to
133+
* use-after-free when the reader thread obtains it. To deal
134+
* with the issue, here we just simply keep it in a list and
135+
* release the memory at the end of program.
136136
*
137-
* We should consider better strategy like reference counting or hazard pointer,
138-
* which allow us to free each chunk of memory at the correct time */
137+
* We should consider better strategy like reference counting or
138+
* hazard pointer, which allow us to free each chunk of memory
139+
* at the correct time */
139140
elem->next = freelist;
140141
freelist = elem;
141142
atomic_fetch_add_explicit(&removes, 1, memory_order_relaxed);

mcslock/mcslock.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ typedef struct mcsnode {
88
_Atomic(uint8_t) wait;
99
} mcsnode_t;
1010

11-
typedef _Atomic(mcsnode_t*) mcslock_t;
11+
typedef _Atomic(mcsnode_t *) mcslock_t;
1212

1313
/* Initialize an MCS lock */
1414
void mcslock_init(mcslock_t *lock);

0 commit comments

Comments
 (0)