Changeset 955f2a5 in mainline for uspace/lib/c/generic/assert.c
- Timestamp:
- 2011-05-21T11:26:23Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1b3e854
- Parents:
- 0c33b1d5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/assert.c
r0c33b1d5 r955f2a5 33 33 #include <assert.h> 34 34 #include <stdio.h> 35 #include <io/klog.h> 35 36 #include <stdlib.h> 36 37 #include <stacktrace.h> … … 44 45 } 45 46 47 void assert_static_abort(const char *msg) 48 { 49 klog_write(msg, str_size(msg)); 50 abort(); 51 } 52 46 53 /** @} 47 54 */
Note:
See TracChangeset
for help on using the changeset viewer.