Ignore:
Timestamp:
Nov 2, 2017, 2:15:19 PM (8 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
8fc45b7
Parents:
e1e8408
Message:

Updated public concurrency API to use references

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/monitor

    re1e8408 r4cedd9f  
    116116}
    117117
    118 void wait( condition * this, uintptr_t user_info = 0 );
    119 bool signal( condition * this );
    120 bool signal_block( condition * this );
    121 static inline bool is_empty( condition * this ) { return !this->blocked.head; }
    122 uintptr_t front( condition * this );
     118void wait( condition & this, uintptr_t user_info = 0 );
     119bool signal( condition & this );
     120bool signal_block( condition & this );
     121static inline bool is_empty( condition & this ) { return !this.blocked.head; }
     122uintptr_t front( condition & this );
    123123
    124124//-----------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.