mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-10-15 07:05:20 +08:00
Move program control to thread structure
This commit is contained in:
@@ -218,44 +218,39 @@ static void tvsub(struct timeval *, struct timeval *);
|
||||
static void usage(void) __dead2;
|
||||
|
||||
#ifdef __rtems__
|
||||
static int main_ping(int argc, char *const *argv);
|
||||
#include <machine/rtems-bsd-program.h>
|
||||
|
||||
static int main(int argc, char **argv);
|
||||
|
||||
static int rtems_shell_main_ping(int argc, char *argv[])
|
||||
{
|
||||
rtems_shell_globals_t ping_globals;
|
||||
rtems_shell_globals = &ping_globals;
|
||||
memset (rtems_shell_globals, 0, sizeof (ping_globals));
|
||||
BBELL = '\a';
|
||||
BSPACE = '\b';
|
||||
DOT = '.';
|
||||
icmp_type = ICMP_ECHO;
|
||||
icmp_type_rsp = ICMP_ECHOREPLY;
|
||||
phdr_len = 0;
|
||||
sweepmin = 0;
|
||||
sweepincr = 1;
|
||||
interval = 1000;
|
||||
waittime = MAXWAIT;
|
||||
nrcvtimeout = 0;
|
||||
tmin = 999999999.0;
|
||||
tmax = 0.0;
|
||||
tsum = 0.0;
|
||||
tsumsq = 0.0;
|
||||
ping_globals.exit_code = 1;
|
||||
if (setjmp (ping_globals.exit_jmp) == 0)
|
||||
return main_ping (argc, argv);
|
||||
return ping_globals.exit_code;
|
||||
BBELL = '\a';
|
||||
BSPACE = '\b';
|
||||
DOT = '.';
|
||||
icmp_type = ICMP_ECHO;
|
||||
icmp_type_rsp = ICMP_ECHOREPLY;
|
||||
phdr_len = 0;
|
||||
sweepmin = 0;
|
||||
sweepincr = 1;
|
||||
interval = 1000;
|
||||
waittime = MAXWAIT;
|
||||
nrcvtimeout = 0;
|
||||
tmin = 999999999.0;
|
||||
tmax = 0.0;
|
||||
tsum = 0.0;
|
||||
tsumsq = 0.0;
|
||||
|
||||
return rtems_bsd_program_call_main("ping", main, argc, argv);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#endif /* __rtems__ */
|
||||
int
|
||||
#ifdef __rtems__
|
||||
main_ping(argc, argv)
|
||||
#else
|
||||
main(argc, argv)
|
||||
#endif
|
||||
int argc;
|
||||
#ifndef __rtems__
|
||||
char *const *argv;
|
||||
#else /* __rtems__ */
|
||||
char **argv;
|
||||
#endif /* __rtems__ */
|
||||
{
|
||||
struct sockaddr_in from, sock_in;
|
||||
struct in_addr ifaddr;
|
||||
|
Reference in New Issue
Block a user