Changes in src/libcfa/concurrency/monitor [cb0e6de:690f13c]
- File:
-
- 1 edited
-
src/libcfa/concurrency/monitor (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/monitor
rcb0e6de r690f13c 18 18 #define MONITOR_H 19 19 20 #include <stddef.h> 21 20 22 #include "assert" 21 23 #include "invoke.h" … … 23 25 24 26 static inline void ?{}(monitor_desc * this) { 25 this->owner = 0; 27 this->owner = NULL; 28 this->stack_owner = NULL; 26 29 this->recursion = 0; 27 30 }
Note:
See TracChangeset
for help on using the changeset viewer.