- File:
-
- 1 edited
-
libcfa/src/concurrency/monitor.hfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/monitor.hfa
r121be3e r58b6d1b 10 10 // Created On : Thd Feb 23 12:27:26 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Dec 4 07:55:32 201913 // Update Count : 1 112 // Last Modified On : Sat Oct 7 18:06:45 2017 13 // Update Count : 10 14 14 // 15 15 … … 31 31 entry_queue{}; 32 32 signal_stack{}; 33 owner = 0p;33 owner = NULL; 34 34 recursion = 0; 35 mask.accepted = 0p;36 mask.data = 0p;35 mask.accepted = NULL; 36 mask.data = NULL; 37 37 mask.size = 0; 38 dtor_node = 0p;38 dtor_node = NULL; 39 39 } 40 41 static inline void ^?{}(monitor_desc & ) {}42 40 43 41 struct monitor_guard_t { … … 122 120 123 121 static inline void ?{}( condition & this ) { 124 this.monitors = 0p;122 this.monitors = NULL; 125 123 this.monitor_count = 0; 126 124 }
Note:
See TracChangeset
for help on using the changeset viewer.