File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -129,13 +129,14 @@ static void *update_cmap(void *args)
129
129
MAP_FOREACH_WITH_HASH (elem , node , hash , cmap_state ) {
130
130
if (elem -> value > max_value ) {
131
131
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.
136
136
*
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 */
139
140
elem -> next = freelist ;
140
141
freelist = elem ;
141
142
atomic_fetch_add_explicit (& removes , 1 , memory_order_relaxed );
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ typedef struct mcsnode {
8
8
_Atomic (uint8_t ) wait ;
9
9
} mcsnode_t ;
10
10
11
- typedef _Atomic (mcsnode_t * ) mcslock_t ;
11
+ typedef _Atomic (mcsnode_t * ) mcslock_t ;
12
12
13
13
/* Initialize an MCS lock */
14
14
void mcslock_init (mcslock_t * lock );
You can’t perform that action at this time.
0 commit comments