Changeset da9518a2 in rtems
- Timestamp:
- 04/05/10 17:12:05 (13 years ago)
- Branches:
- 4.10, 4.11, 5, master
- Children:
- b2e0ac6
- Parents:
- 14782ec0
- Location:
- cpukit
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r14782ec0 rda9518a2 1 2010-04-05 Thomas Znidar <t.znidar@embed-it.com> 2 3 * libmisc/monitor/mon-monitor.c, libmisc/monitor/monitor.h: Add reset 4 command. 5 1 6 2010-04-04 Ralf Corsépius <ralf.corsepius@rtems.org> 2 7 -
cpukit/libmisc/monitor/mon-monitor.c
r14782ec0 rda9518a2 230 230 &rtems_monitor_commands[20], 231 231 }, 232 { "reset", 233 "(SW)Resets the System.", 234 0, 235 rtems_monitor_reset_cmd, 236 { 0 }, 237 &rtems_monitor_commands[21], 238 }, 232 239 #ifdef RTEMS_POSIX_API 233 240 { "pthread", … … 238 245 rtems_monitor_object_cmd, 239 246 { RTEMS_MONITOR_OBJECT_PTHREAD }, 240 &rtems_monitor_commands[21], 241 }, 247 &rtems_monitor_commands[22], 248 }, 249 #define RTEMS_MONITOR_DEBUGGER_NEXT 23 250 #else 242 251 #define RTEMS_MONITOR_DEBUGGER_NEXT 22 243 #else244 #define RTEMS_MONITOR_DEBUGGER_NEXT 21245 252 #endif 246 253 #ifdef CPU_INVOKE_DEBUGGER … … 284 291 &event_set); 285 292 return status; 293 } 294 295 void __attribute__((weak)) 296 rtems_monitor_reset_cmd( 297 int argc, 298 char **argv, 299 rtems_monitor_command_arg_t* command_arg, 300 bool verbose 301 ) 302 { 303 286 304 } 287 305 -
cpukit/libmisc/monitor/monitor.h
r14782ec0 rda9518a2 376 376 void rtems_monitor_continue_cmd(int, char **, const rtems_monitor_command_arg_t*, bool); 377 377 void rtems_monitor_debugger_cmd(int, char **, const rtems_monitor_command_arg_t*, bool); 378 void rtems_monitor_reset_cmd(int, char **, rtems_monitor_command_arg_t*, bool); 378 379 void rtems_monitor_node_cmd(int, char **, const rtems_monitor_command_arg_t*, bool); 379 380 void rtems_monitor_symbols_loadup(void);
Note: See TracChangeset
for help on using the changeset viewer.