Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/bits/weakso_locks.cfa

    r200a229 rab1b971  
    1818#include "bits/weakso_locks.hfa"
    1919
    20 void  ?{}( blocking_lock &, bool, bool ) {}
    21 void ^?{}( blocking_lock & ) {}
     20void  ?{}( blocking_lock & this, bool multi_acquisition, bool strict_owner ) {}
     21void ^?{}( blocking_lock & this ) {}
    2222
    23 void lock( blocking_lock & ) {}
    24 bool try_lock( blocking_lock & ) { return false; }
    25 void unlock( blocking_lock & ) {}
    26 void on_notify( blocking_lock &, struct $thread * ) {}
    27 size_t on_wait( blocking_lock & ) { return 0; }
    28 void on_wakeup( blocking_lock &, size_t ) {}
    29 size_t wait_count( blocking_lock & ) { return 0; }
     23void lock( blocking_lock & this ) {}
     24bool try_lock( blocking_lock & this ) { return false; }
     25void unlock( blocking_lock & this ) {}
     26void on_notify( blocking_lock & this, struct $thread * t ) {}
     27void on_wait( blocking_lock & this ) {}
     28size_t wait_count( blocking_lock & this ) { return 0; }
     29void set_recursion_count( blocking_lock & this, size_t recursion ) {}
     30size_t get_recursion_count( blocking_lock & this ) { return 0; }
Note: See TracChangeset for help on using the changeset viewer.