Changeset 7f043c0 in mainline for kernel/generic
- Timestamp:
- 2007-05-31T21:39:13Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7bb0c32
- Parents:
- d8431986
- Location:
- kernel/generic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/interrupt.h
rd8431986 r7f043c0 49 49 { \ 50 50 if (istate_from_uspace(istate)) { \ 51 klog_printf("Task %llu killed due to an exception at %p.", TASK->taskid, istate_get_pc(istate)); \ 51 task_t *task = TASK; \ 52 klog_printf("Task %llu killed due to an exception at %p.", task->taskid, istate_get_pc(istate)); \ 52 53 klog_printf(" " cmd, ##__VA_ARGS__); \ 53 task_kill( TASK->taskid); \54 task_kill(task->taskid); \ 54 55 thread_exit(); \ 55 56 } \ -
kernel/generic/src/printf/printf_core.c
rd8431986 r7f043c0 419 419 * TYPE:@n 420 420 * - "hh" Signed or unsigned char.@n 421 * - "h" Signed or u signed short.@n422 * - "" Signed or u signed int (default value).@n423 * - "l" Signed or u signed long int.@n424 * - "ll" Signed or u signed long long int.@n421 * - "h" Signed or unsigned short.@n 422 * - "" Signed or unsigned int (default value).@n 423 * - "l" Signed or unsigned long int.@n 424 * - "ll" Signed or unsigned long long int.@n 425 425 * - "z" unative_t (non-standard extension).@n 426 426 * … … 434 434 * 435 435 * - P, p Print value of a pointer. Void * value is expected and it is printed in hexadecimal notation with prefix 436 * (as with \%#X or\%#x for 32bit or \%#X / \%#x for 64bit long pointers).436 * (as with \%#X / \%#x for 32bit or \%#X / \%#x for 64bit long pointers). 437 437 * 438 438 * - b Print value as unsigned binary number. Prefix is not printed by default. (Nonstandard extension.)
Note:
See TracChangeset
for help on using the changeset viewer.