Changes in libcfa/src/bits/locks.hfa [c66f6cb:6ec07e5]
- File:
-
- 1 edited
-
libcfa/src/bits/locks.hfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/bits/locks.hfa
rc66f6cb r6ec07e5 115 115 char * strerror(int); 116 116 } 117 #define CHECKED(x) { int err = x; if( err != 0 ) abort("KERNEL ERROR: %s\n", strerror(err)); }117 #define CHECKED(x) { int err = x; if( err != 0 ) abort("KERNEL ERROR: Operation \"" #x "\" return error %d - %s\n", err, strerror(err)); } 118 118 119 119 struct __bin_sem_t {
Note:
See TracChangeset
for help on using the changeset viewer.