Changeset 6445baf in mainline


Ignore:
Timestamp:
2006-05-02T12:02:14Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9417cdc
Parents:
e499a30
Message:

Comments update.
Printing functions moved from debug/ to printf/.

Files:
1 edited
7 moved

Legend:

Unmodified
Added
Removed
  • Makefile

    re499a30 r6445baf  
    134134        generic/src/lib/sort.c \
    135135        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 \
    143143        generic/src/debug/symtab.c \
    144144        generic/src/time/clock.c \
  • generic/src/printf/printf_core.c

    re499a30 r6445baf  
    463463{
    464464        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 */
    466466        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 */
    469469        char c;
    470470        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 */
    474474        int width, precision;
    475475        __u64 flags;
Note: See TracChangeset for help on using the changeset viewer.