Changes in src/libcfa/concurrency/monitor [c40e7c5:0cf5b79]
- File:
-
- 1 edited
-
src/libcfa/concurrency/monitor (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/monitor
rc40e7c5 r0cf5b79 27 27 }; 28 28 29 static inline void ?{}(monitor_desc & this) with( this ){30 lock{};31 entry_queue{};32 signal_stack{};33 owner = NULL;34 recursion = 0;35 mask.accepted = NULL;36 mask.data = NULL;37 mask.size = 0;38 dtor_node = NULL;29 static inline void ?{}(monitor_desc & this) { 30 (this.lock){}; 31 (this.entry_queue){}; 32 (this.signal_stack){}; 33 this.owner = NULL; 34 this.recursion = 0; 35 this.mask.accepted = NULL; 36 this.mask.data = NULL; 37 this.mask.size = 0; 38 this.dtor_node = NULL; 39 39 } 40 40
Note:
See TracChangeset
for help on using the changeset viewer.