Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/monitor

    rc40e7c5 r0cf5b79  
    2727};
    2828
    29 static inline void ?{}(monitor_desc & this) with( this ) {
    30         lock{};
    31         entry_queue{};
    32         signal_stack{};
    33         owner         = NULL;
    34         recursion     = 0;
    35         mask.accepted = NULL;
    36         mask.data     = NULL;
    37         mask.size     = 0;
    38         dtor_node     = NULL;
     29static inline void ?{}(monitor_desc & this) {
     30        (this.lock){};
     31        (this.entry_queue){};
     32        (this.signal_stack){};
     33        this.owner         = NULL;
     34        this.recursion     = 0;
     35        this.mask.accepted = NULL;
     36        this.mask.data     = NULL;
     37        this.mask.size     = 0;
     38        this.dtor_node     = NULL;
    3939}
    4040
Note: See TracChangeset for help on using the changeset viewer.