- File:
-
- 1 edited
-
libcfa/src/bits/weakso_locks.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/bits/weakso_locks.cfa
r70a4ed5 rc18bf9e 15 15 // Update Count : 16 16 // 17 17 18 #include "bits/weakso_locks.hfa" 19 18 20 #pragma GCC visibility push(default) 19 21 … … 25 27 void unlock( blocking_lock & ) {} 26 28 void on_notify( blocking_lock &, struct thread$ * ) {} 27 size_t on_wait( blocking_lock & , void (*pp_fn)( void * ), void * pp_datum) { return 0; }29 size_t on_wait( blocking_lock & ) { return 0; } 28 30 void on_wakeup( blocking_lock &, size_t ) {} 29 31 size_t wait_count( blocking_lock & ) { return 0; } 30 bool register_select( blocking_lock & this, select_node & node ) { return false; }31 bool unregister_select( blocking_lock & this, select_node & node ) { return false; }32 void on_selected( blocking_lock & this, select_node & node ) {}33
Note:
See TracChangeset
for help on using the changeset viewer.