Changeset cb01e1e in mainline for kernel/generic/src/console/cmd.c
- Timestamp:
- 2009-04-04T00:26:27Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a85aebd
- Parents:
- 171f9a1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/console/cmd.c
r171f9a1 rcb01e1e 32 32 33 33 /** 34 * @file 35 * @brief 34 * @file cmd.c 35 * @brief Kernel console command wrappers. 36 36 * 37 37 * This file is meant to contain all wrapper functions for … … 997 997 998 998 /* Execute the test */ 999 char * ret = test->entry(false); 999 test_quiet = false; 1000 char *ret = test->entry(); 1000 1001 1001 1002 /* Update and read thread accounting */ … … 1049 1050 1050 1051 /* Execute the test */ 1051 char * ret = test->entry(true); 1052 test_quiet = true; 1053 char * ret = test->entry(); 1052 1054 1053 1055 /* Update and read thread accounting */ … … 1151 1153 if (!fnd) 1152 1154 printf("Unknown test\n"); 1153 1155 1154 1156 return 1; 1155 1157 }
Note:
See TracChangeset
for help on using the changeset viewer.