Changeset b45c443 in mainline for generic/src/console/cmd.c
- Timestamp:
- 2006-06-13T14:26:44Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3222efd
- Parents:
- 279952c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/console/cmd.c
r279952c rb45c443 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup genericconsole 30 * @{ 27 31 */ 28 32 … … 61 65 #include <ipc/ipc.h> 62 66 63 /* *Data and methods for 'help' command. */67 /* Data and methods for 'help' command. */ 64 68 static int cmd_help(cmd_arg_t *argv); 65 69 static cmd_info_t help_info = { … … 84 88 }; 85 89 86 /* *Data and methods for 'description' command. */90 /* Data and methods for 'description' command. */ 87 91 static int cmd_desc(cmd_arg_t *argv); 88 92 static void desc_help(void); … … 102 106 }; 103 107 104 /* *Data and methods for 'symaddr' command. */108 /* Data and methods for 'symaddr' command. */ 105 109 static int cmd_symaddr(cmd_arg_t *argv); 106 110 static char symaddr_buf[MAX_CMDLINE+1]; … … 138 142 }; 139 143 140 /* *Data and methods for 'call0' command. */144 /* Data and methods for 'call0' command. */ 141 145 static char call0_buf[MAX_CMDLINE+1]; 142 146 static char carg1_buf[MAX_CMDLINE+1]; … … 158 162 }; 159 163 160 /* *Data and methods for 'call1' command. */164 /* Data and methods for 'call1' command. */ 161 165 static int cmd_call1(cmd_arg_t *argv); 162 166 static cmd_arg_t call1_argv[] = { … … 180 184 }; 181 185 182 /* *Data and methods for 'call2' command. */186 /* Data and methods for 'call2' command. */ 183 187 static int cmd_call2(cmd_arg_t *argv); 184 188 static cmd_arg_t call2_argv[] = { … … 207 211 }; 208 212 209 /* *Data and methods for 'call3' command. */213 /* Data and methods for 'call3' command. */ 210 214 static int cmd_call3(cmd_arg_t *argv); 211 215 static cmd_arg_t call3_argv[] = { … … 240 244 }; 241 245 242 /* *Data and methods for 'halt' command. */246 /* Data and methods for 'halt' command. */ 243 247 static int cmd_halt(cmd_arg_t *argv); 244 248 static cmd_info_t halt_info = { … … 249 253 }; 250 254 251 /* *Data and methods for 'tlb' command. */255 /* Data and methods for 'tlb' command. */ 252 256 static int cmd_tlb(cmd_arg_t *argv); 253 257 cmd_info_t tlb_info = { … … 293 297 }; 294 298 295 /* *Data and methods for 'zones' command */299 /* Data and methods for 'zones' command */ 296 300 static int cmd_zones(cmd_arg_t *argv); 297 301 static cmd_info_t zones_info = { … … 302 306 }; 303 307 304 /* *Data and methods for 'ipc_task' command */308 /* Data and methods for 'ipc_task' command */ 305 309 static int cmd_ipc_task(cmd_arg_t *argv); 306 310 static cmd_arg_t ipc_task_argv = { … … 315 319 }; 316 320 317 /* *Data and methods for 'zone' command */321 /* Data and methods for 'zone' command */ 318 322 static int cmd_zone(cmd_arg_t *argv); 319 323 static cmd_arg_t zone_argv = { … … 329 333 }; 330 334 331 /* *Data and methods for 'cpus' command. */335 /* Data and methods for 'cpus' command. */ 332 336 static int cmd_cpus(cmd_arg_t *argv); 333 337 cmd_info_t cpus_info = { … … 340 344 }; 341 345 342 /* *Data and methods for 'version' command. */346 /* Data and methods for 'version' command. */ 343 347 static int cmd_version(cmd_arg_t *argv); 344 348 cmd_info_t version_info = { … … 800 804 return 1; 801 805 } 806 807 /** @} 808 */ 809
Note:
See TracChangeset
for help on using the changeset viewer.