Changeset 1b43a04 in mainline for kernel/generic/src/console/kconsole.c
- Timestamp:
- 2006-11-05T13:49:23Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b63a7cc
- Parents:
- 14de0dd8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/console/kconsole.c
r14de0dd8 r1b43a04 205 205 static int cmdtab_compl(char *name) 206 206 { 207 char output[MAX_SYMBOL_NAME+1];207 static char output[MAX_SYMBOL_NAME+1]; 208 208 link_t *startpos = NULL; 209 209 const char *foundtxt; … … 245 245 static int histposition = 0; 246 246 247 char tmp[MAX_CMDLINE+1];247 static char tmp[MAX_CMDLINE+1]; 248 248 int curlen = 0, position = 0; 249 249 char *current = history[histposition]; … … 434 434 static int parse_int_arg(char *text, size_t len, unative_t *result) 435 435 { 436 char symname[MAX_SYMBOL_NAME];436 static char symname[MAX_SYMBOL_NAME]; 437 437 uintptr_t symaddr; 438 438 bool isaddr = false;
Note:
See TracChangeset
for help on using the changeset viewer.