Changeset 15a47934 in rtems
- Timestamp:
- 09/14/07 22:52:53 (15 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 33eeeb2
- Parents:
- 28e56ede
- Location:
- cpukit
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r28e56ede r15a47934 1 2007-09-14 Joel Sherrill <joel.sherrill@oarcorp.com> 2 3 * libmisc/monitor/monitor.h: Add network commands that were in the 4 network supplement but not in the code. 5 * libmisc/monitor/mon-network.c: New file. 6 1 7 2007-09-14 Joel Sherrill <joel.sherrill@OARcorp.com> 2 8 -
cpukit/libmisc/Makefile.am
r28e56ede r15a47934 47 47 monitor/mon-region.c monitor/mon-sema.c monitor/symbols.h \ 48 48 monitor/monitor.h 49 if LIBNETWORKING 50 libmonitor_a_SOURCES += monitor/mon-network.c 51 endif 49 52 if HAS_MP 50 53 libmonitor_a_SOURCES += monitor/mon-mpci.c -
cpukit/libmisc/monitor/monitor.h
r28e56ede r15a47934 13 13 14 14 #include <rtems/error.h> /* rtems_error() */ 15 #include <rtems/config.h> 15 16 16 17 #ifdef __cplusplus … … 493 494 void rtems_monitor_symbol_cmd(int, char **, rtems_monitor_command_arg_t*, boolean); 494 495 496 #if defined(RTEMS_NETWORKING) 497 void mon_ifconfig( 498 int argc, 499 char *argv[], 500 uint32_t command_arg, 501 boolean verbose 502 ); 503 void mon_route( 504 int argc, 505 char *argv[], 506 uint32_t command_arg, 507 boolean verbose 508 ); 509 #endif 495 510 496 511 /* mon-object.c */
Note: See TracChangeset
for help on using the changeset viewer.