Changes in kernel/generic/src/console/kconsole.c [c0f13d2:7a0359b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/console/kconsole.c
rc0f13d2 r7a0359b 160 160 161 161 /** Print count times a character */ 162 static void print_cc(wchar_t ch, size_t count)162 NO_TRACE static void print_cc(wchar_t ch, size_t count) 163 163 { 164 164 size_t i; … … 168 168 169 169 /** Try to find a command beginning with prefix */ 170 static const char *cmdtab_search_one(const char *name, link_t **startpos) 170 NO_TRACE static const char *cmdtab_search_one(const char *name, 171 link_t **startpos) 171 172 { 172 173 size_t namelen = str_length(name); … … 202 203 * 203 204 */ 204 static int cmdtab_compl(char *input, size_t size)205 NO_TRACE static int cmdtab_compl(char *input, size_t size) 205 206 { 206 207 const char *name = input; … … 237 238 } 238 239 239 static wchar_t *clever_readline(const char *prompt, indev_t *indev)240 NO_TRACE static wchar_t *clever_readline(const char *prompt, indev_t *indev) 240 241 { 241 242 printf("%s> ", prompt); … … 422 423 } 423 424 424 static bool parse_int_arg(const char *text, size_t len, unative_t *result) 425 NO_TRACE static bool parse_int_arg(const char *text, size_t len, 426 unative_t *result) 425 427 { 426 428 bool isaddr = false; … … 507 509 * 508 510 */ 509 static bool parse_argument(const char *cmdline, size_t size, size_t *start, size_t *end) 511 NO_TRACE static bool parse_argument(const char *cmdline, size_t size, 512 size_t *start, size_t *end) 510 513 { 511 514 ASSERT(start != NULL); … … 543 546 * 544 547 */ 545 static cmd_info_t *parse_cmdline(const char *cmdline, size_t size)548 NO_TRACE static cmd_info_t *parse_cmdline(const char *cmdline, size_t size) 546 549 { 547 550 size_t start = 0;
Note:
See TracChangeset
for help on using the changeset viewer.