Ignore:
Timestamp:
Jan 4, 2023, 1:43:50 PM (19 months ago)
Author:
caparsons <caparson@…>
Branches:
ADT, ast-experimental, master
Children:
d99a716
Parents:
df9e412
Message:

fixed clh bug where you couldn't hold more than 1 clh lock at once

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/locks.hfa

    rdf9e412 r0348fd8  
    228228struct clh_lock {
    229229        volatile bool * volatile tail;
     230    volatile bool * volatile head;
    230231};
    231232
     
    237238        *(curr_thd->clh_node) = false;
    238239        volatile bool * prev = __atomic_exchange_n((bool **)(&l.tail), (bool *)(curr_thd->clh_node), __ATOMIC_SEQ_CST);
    239         while(!__atomic_load_n(prev, __ATOMIC_ACQUIRE)) Pause();
    240         curr_thd->clh_prev = prev;
     240        while(!__atomic_load_n(prev, __ATOMIC_SEQ_CST)) Pause();
     241    __atomic_store_n((bool **)(&l.head), (bool *)curr_thd->clh_node, __ATOMIC_SEQ_CST);
     242    curr_thd->clh_node = prev;
    241243}
    242244
    243245static inline void unlock(clh_lock & l) {
    244         thread$ * curr_thd = active_thread();
    245         __atomic_store_n(curr_thd->clh_node, true, __ATOMIC_RELEASE);
    246         curr_thd->clh_node = curr_thd->clh_prev;
     246        __atomic_store_n((bool *)(l.head), true, __ATOMIC_SEQ_CST);
    247247}
    248248
Note: See TracChangeset for help on using the changeset viewer.