Ignore:
Timestamp:
Nov 2, 2017, 2:15:19 PM (6 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/kernel

    re1e8408 r4cedd9f  
    3939void  ?{}(semaphore & this, int count = 1);
    4040void ^?{}(semaphore & this);
    41 void P(semaphore * this);
    42 void V(semaphore * this);
     41void   P (semaphore & this);
     42void   V (semaphore & this);
    4343
    4444
     
    5151};
    5252
    53 void ?{}(cluster & this);
     53void ?{} (cluster & this);
    5454void ^?{}(cluster & this);
    5555
Note: See TracChangeset for help on using the changeset viewer.