Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/console/kconsole.c

    r7a0359b rc0f13d2  
    160160
    161161/** Print count times a character */
    162 NO_TRACE static void print_cc(wchar_t ch, size_t count)
     162static void print_cc(wchar_t ch, size_t count)
    163163{
    164164        size_t i;
     
    168168
    169169/** Try to find a command beginning with prefix */
    170 NO_TRACE static const char *cmdtab_search_one(const char *name,
    171     link_t **startpos)
     170static const char *cmdtab_search_one(const char *name, link_t **startpos)
    172171{
    173172        size_t namelen = str_length(name);
     
    203202 *
    204203 */
    205 NO_TRACE static int cmdtab_compl(char *input, size_t size)
     204static int cmdtab_compl(char *input, size_t size)
    206205{
    207206        const char *name = input;
     
    238237}
    239238
    240 NO_TRACE static wchar_t *clever_readline(const char *prompt, indev_t *indev)
     239static wchar_t *clever_readline(const char *prompt, indev_t *indev)
    241240{
    242241        printf("%s> ", prompt);
     
    423422}
    424423
    425 NO_TRACE static bool parse_int_arg(const char *text, size_t len,
    426     unative_t *result)
     424static bool parse_int_arg(const char *text, size_t len, unative_t *result)
    427425{
    428426        bool isaddr = false;
     
    509507 *
    510508 */
    511 NO_TRACE static bool parse_argument(const char *cmdline, size_t size,
    512     size_t *start, size_t *end)
     509static bool parse_argument(const char *cmdline, size_t size, size_t *start, size_t *end)
    513510{
    514511        ASSERT(start != NULL);
     
    546543 *
    547544 */
    548 NO_TRACE static cmd_info_t *parse_cmdline(const char *cmdline, size_t size)
     545static cmd_info_t *parse_cmdline(const char *cmdline, size_t size)
    549546{
    550547        size_t start = 0;
Note: See TracChangeset for help on using the changeset viewer.