Ignore:
File:
1 edited

Legend:

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

    rb798713 r09d4b22  
    1010// Created On       : Tue Jan 17 12:27:26 2016
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat Jun 22 18:19:13 2019
    13 // Update Count     : 40
     12// Last Modified On : Thu Dec  5 16:26:03 2019
     13// Update Count     : 44
    1414//
    1515
     
    158158        };
    159159
    160         // Link lists fields
    161         // instrusive link field for threads
    162         struct __thread_desc_link {
    163                 struct thread_desc * next;
    164                 struct thread_desc * prev;
    165                 unsigned long long ts;
    166         };
    167 
    168160        struct thread_desc {
    169161                // Core threading fields
     
    196188                // Link lists fields
    197189                // instrusive link field for threads
    198                 struct __thread_desc_link link;
     190                struct thread_desc * next;
    199191
    200192                struct {
     
    207199        extern "Cforall" {
    208200                static inline thread_desc *& get_next( thread_desc & this ) {
    209                         return this.link.next;
     201                        return this.next;
    210202                }
    211203
     
    215207
    216208                static inline void ?{}(__monitor_group_t & this) {
    217                         (this.data){NULL};
     209                        (this.data){0p};
    218210                        (this.size){0};
    219211                        (this.func){NULL};
Note: See TracChangeset for help on using the changeset viewer.