Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/invoke.h

    rde94a60 rafd550c  
    136136                struct thread_desc * next;
    137137
    138                 struct {
    139                         struct thread_desc * next;
    140                         struct thread_desc * prev;
    141                 } node;
     138                __cfaabi_dbg_debug_do(
     139                        // instrusive link field for debugging
     140                        struct thread_desc * dbg_next;
     141                        struct thread_desc * dbg_prev;
     142                )
    142143     };
    143144
     
    146147                static inline thread_desc * & get_next( thread_desc & this ) {
    147148                        return this.next;
    148                 }
    149 
    150                 static inline [thread_desc *&, thread_desc *& ] __get( thread_desc & this ) {
    151                         return this.node.[next, prev];
    152149                }
    153150
Note: See TracChangeset for help on using the changeset viewer.