Differences From Artifact [58676980aa]:
- File mod/kcore/core.h — part of check-in [6bc8ca3cac] at 2019-10-21 01:40:38 on branch trunk — add volatile qualifiers, add helper functions for error mechanism (user: lexi, size: 4091) [annotate] [blame] [check-ins using]
To Artifact [2582f2493d]:
- File mod/kcore/core.h — part of check-in [bdb84af41a] at 2019-10-21 01:46:58 on branch trunk — fix broken commit (user: lexi, size: 4090) [annotate] [blame] [check-ins using]
161 161 * necessary changes throughout the library */ 162 162 bool kokay(kcond); 163 163 164 164 typedef struct kerror { 165 165 const char* module_name, 166 166 * module_desc, 167 167 * error_string; 168 - kcond error; 168 + kcond cond; 169 169 } kerror; 170 170 171 171 kerror kexplain(kcond); 172 172 173 173 #ifdef __cplusplus 174 174 } 175 175 #endif 176 176 177 177 #endif