Delete rtems_bsd_thread_chain

Rely on RTEMS object registration for threads.
This commit is contained in:
Sebastian Huber
2014-09-25 10:48:14 +02:00
parent ccbc70df3e
commit 6604dc893e
8 changed files with 69 additions and 98 deletions

View File

@@ -70,8 +70,6 @@ extern const size_t rtems_bsd_nexus_device_count;
rtems_status_code rtems_bsd_initialize(void);
void rtems_bsd_shell_initialize(void);
#ifdef __cplusplus
}
#endif /* __cplusplus */

View File

@@ -18,17 +18,24 @@
#include <rtems/shell.h>
/*
* Externs for all command definition structures
*/
// #if RTEMS_NETWORKING
extern rtems_shell_cmd_t rtems_shell_PING_Command;
extern rtems_shell_cmd_t rtems_shell_PING6_Command;
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
extern rtems_shell_cmd_t rtems_shell_IFCONFIG_Command;
extern rtems_shell_cmd_t rtems_shell_ROUTE_Command;
extern rtems_shell_cmd_t rtems_shell_NETSTAT_Command;
extern rtems_shell_cmd_t rtems_shell_DHCPCD_Command;
// #endif
extern rtems_shell_cmd_t rtems_shell_BSD_Command;
extern rtems_shell_cmd_t rtems_shell_PING_Command;
extern rtems_shell_cmd_t rtems_shell_PING6_Command;
extern rtems_shell_cmd_t rtems_shell_IFCONFIG_Command;
extern rtems_shell_cmd_t rtems_shell_ROUTE_Command;
extern rtems_shell_cmd_t rtems_shell_NETSTAT_Command;
extern rtems_shell_cmd_t rtems_shell_DHCPCD_Command;
extern rtems_shell_cmd_t rtems_shell_DHCPCD_Command;
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif