Ignore:
File:
1 edited

Legend:

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

    r8def349 re15df4c  
    3131
    3232      struct simple_thread_list {
    33             struct thread_h * head;
    34             struct thread_h ** tail;
     33            struct thread * head;
     34            struct thread ** tail;
    3535      };
    3636
     
    3838      extern "Cforall" {
    3939            void ?{}( struct simple_thread_list * );
    40             void append( struct simple_thread_list *, struct thread_h * );
    41             struct thread_h * pop_head( struct simple_thread_list * );
     40            void append( struct simple_thread_list *, struct thread * );
     41            struct thread * pop_head( struct simple_thread_list * );
    4242      }
    4343      #endif
     
    7070      };
    7171
    72       struct thread_h {
     72      struct thread {
    7373            struct coroutine c;
    7474            struct simple_lock lock;
    75             struct thread_h * next;
     75            struct thread * next;
    7676      };
    7777
Note: See TracChangeset for help on using the changeset viewer.