Skip to content

Commit

Permalink
Fix introduced issue with TCC
Browse files Browse the repository at this point in the history
  • Loading branch information
P-p-H-d committed Mar 26, 2024
1 parent c9fef6d commit 3c49430
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions m-concurrent.h
Original file line number Diff line number Diff line change
Expand Up @@ -795,8 +795,8 @@
M_F(name, _internal_init)(concurrent_t out) \
{ \
m_mutex_init(out->lock); \
atomic_store(&out->num_reader, 0); \
atomic_store(&out->num_waiting_writer, 0); \
atomic_init(&out->num_reader, 0); \
atomic_init(&out->num_waiting_writer, 0); \
m_cond_init(out->there_is_data); \
out->self = out; \
M_C0NCURRENT_CONTRACT(out); \
Expand Down

0 comments on commit 3c49430

Please sign in to comment.