Changeset 6445baf in mainline
- Timestamp:
- 2006-05-02T12:02:14Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9417cdc
- Parents:
- e499a30
- Files:
-
- 1 edited
- 7 moved
Legend:
- Unmodified
- Added
- Removed
-
Makefile
re499a30 r6445baf 134 134 generic/src/lib/sort.c \ 135 135 generic/src/lib/elf.c \ 136 generic/src/ debug/printf_core.c \137 generic/src/ debug/printf.c \138 generic/src/ debug/sprintf.c \139 generic/src/ debug/snprintf.c \140 generic/src/ debug/vprintf.c \141 generic/src/ debug/vsprintf.c \142 generic/src/ debug/vsnprintf.c \136 generic/src/printf/printf_core.c \ 137 generic/src/printf/printf.c \ 138 generic/src/printf/sprintf.c \ 139 generic/src/printf/snprintf.c \ 140 generic/src/printf/vprintf.c \ 141 generic/src/printf/vsprintf.c \ 142 generic/src/printf/vsnprintf.c \ 143 143 generic/src/debug/symtab.c \ 144 144 generic/src/time/clock.c \ -
generic/src/printf/printf_core.c
re499a30 r6445baf 463 463 { 464 464 int irqpri; 465 int i = 0, j = 0; /* i is index of currently processed char from fmt, j is index to the first not printed nonformating character */465 int i = 0, j = 0; /**< i is index of currently processed char from fmt, j is index to the first not printed nonformating character */ 466 466 int end; 467 int counter; /* counter of printed characters */468 int retval; /* used to store return values from called functions */467 int counter; /**< counter of printed characters */ 468 int retval; /**< used to store return values from called functions */ 469 469 char c; 470 470 qualifier_t qualifier; /* type of argument */ 471 int base; /* base in which will be parameter (numbers only) printed */472 __u64 number; /* argument value */473 size_t size; /* byte size of integer parameter */471 int base; /**< base in which will be parameter (numbers only) printed */ 472 __u64 number; /**< argument value */ 473 size_t size; /**< byte size of integer parameter */ 474 474 int width, precision; 475 475 __u64 flags;
Note:
See TracChangeset
for help on using the changeset viewer.