Ignore:
File:
1 edited

Legend:

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

    r39fea2f r80c72a7  
    4949      #ifdef __CFORALL__
    5050      extern "Cforall" {
    51             void ?{}( struct __thread_queue_t & );
     51            void ?{}( struct __thread_queue_t * );
    5252            void append( struct __thread_queue_t *, struct thread_desc * );
    5353            struct thread_desc * pop_head( struct __thread_queue_t * );
    5454            struct thread_desc * remove( struct __thread_queue_t *, struct thread_desc ** );
    5555
    56             void ?{}( struct __condition_stack_t & );
     56            void ?{}( struct __condition_stack_t * );
    5757            void push( struct __condition_stack_t *, struct __condition_criterion_t * );
    5858            struct __condition_criterion_t * pop( struct __condition_stack_t * );
    5959
    60             void ?{}(spinlock & this);
    61             void ^?{}(spinlock & this);
     60            void ?{}(spinlock * this);
     61            void ^?{}(spinlock * this);
    6262      }
    6363      #endif
     
    8080            int errno_;                               // copy of global UNIX variable errno
    8181            enum coroutine_state state;               // current execution status for coroutine
    82             struct coroutine_desc * starter;          // first coroutine to resume this one
    83             struct coroutine_desc * last;             // last coroutine to resume this one
     82            struct coroutine_desc *starter;           // first coroutine to resume this one
     83            struct coroutine_desc *last;                    // last coroutine to resume this one
    8484      };
    8585
Note: See TracChangeset for help on using the changeset viewer.