Flush defunct sim_kill.

This commit is contained in:
Andrew Cagney 1997-08-26 02:05:18 +00:00
parent 1211388f13
commit 7230ff0faa
24 changed files with 48 additions and 92 deletions

View file

@ -1,3 +1,7 @@
Tue Aug 26 10:37:27 1997 Andrew Cagney <cagney@b1.cygnus.com>
* wrapper.c (sim_kill): Delete.
Mon Aug 25 17:50:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
* configure: Regenerated to track ../common/aclocal.m4 changes.

View file

@ -320,13 +320,6 @@ sim_stop_reason (sd, reason, sigrc)
}
}
void
sim_kill (sd)
SIM_DESC sd;
{
/* nothing to do */
}
void
sim_do_command (sd, cmd)
SIM_DESC sd;

View file

@ -1,3 +1,7 @@
Tue Aug 26 10:37:49 1997 Andrew Cagney <cagney@b1.cygnus.com>
* interp.c (sim_kill): Delete.
Mon Aug 25 17:50:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
* configure: Regenerated to track ../common/aclocal.m4 changes.

View file

@ -824,13 +824,6 @@ sim_create_inferior (sd, argv, env)
}
void
sim_kill (sd)
SIM_DESC sd;
{
/* nothing to do */
}
void
sim_set_callbacks (p)
host_callback *p;

View file

@ -1,3 +1,7 @@
Tue Aug 26 10:38:20 1997 Andrew Cagney <cagney@b1.cygnus.com>
* interf.c (sim_kill): Delete.
Mon Aug 25 17:50:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
* configure: Regenerated to track ../common/aclocal.m4 changes.

View file

@ -432,11 +432,6 @@ sim_trace (sd)
return 1;
}
void
sim_kill(SIM_DESC sd)
{
}
void
sim_do_command(sd, cmd)
SIM_DESC sd;

View file

@ -1,3 +1,7 @@
Tue Aug 26 10:38:43 1997 Andrew Cagney <cagney@b1.cygnus.com>
* compile.c (sim_kill): Delete.
Mon Aug 25 17:50:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
* configure: Regenerated to track ../common/aclocal.m4 changes.

View file

@ -2012,13 +2012,6 @@ set_h8300h (flag)
h8300hmode = flag;
}
void
sim_kill (sd)
SIM_DESC sd;
{
/* nothing to do */
}
SIM_DESC
sim_open (kind, ptr, abfd, argv)
SIM_OPEN_KIND kind;

View file

@ -1,3 +1,7 @@
Tue Aug 26 10:39:42 1997 Andrew Cagney <cagney@b1.cygnus.com>
* sim-if.c (sim_kill): Delete.
Mon Aug 25 17:50:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
* configure: Regenerated to track ../common/aclocal.m4 changes.

View file

@ -135,13 +135,6 @@ sim_create_inferior (sd, argv, envp)
return SIM_RC_OK;
}
void
sim_kill (sd)
SIM_DESC sd;
{
/* nothing to do */
}
int
sim_stop (SIM_DESC sd)
{

View file

@ -1,3 +1,7 @@
Tue Aug 26 10:40:07 1997 Andrew Cagney <cagney@b1.cygnus.com>
* interp.c (sim_kill): Delete.
Mon Aug 25 17:50:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
* configure: Regenerated to track ../common/aclocal.m4 changes.

View file

@ -999,7 +999,6 @@ sim_close (sd, quitting)
printf("DBG: sim_close: entered (quitting = %d)\n",quitting);
#endif
/* Cannot assume sim_kill() has been called */
/* "quitting" is non-zero if we cannot hang on errors */
/* Ensure that any resources allocated through the callback
@ -1454,23 +1453,6 @@ sim_create_inferior (sd, argv,env)
return SIM_RC_OK;
}
void
sim_kill (sd)
SIM_DESC sd;
{
#if 1
/* This routine should be for terminating any existing simulation
thread. Since we are single-threaded only at the moment, this is
not an issue. It should *NOT* be used to terminate the
simulator. */
#else /* do *NOT* call sim_close */
sim_close(sd, 1); /* Do not hang on errors */
/* This would also be the point where any memory mapped areas used
by the simulator should be released. */
#endif
return;
}
typedef enum {e_terminate,e_help,e_setmemsize,e_reset} e_cmds;
static struct t_sim_command {

View file

@ -1,3 +1,7 @@
Tue Aug 26 10:41:07 1997 Andrew Cagney <cagney@b1.cygnus.com>
* interp.c (sim_kill): Delete.
Mon Aug 25 17:50:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
* configure: Regenerated to track ../common/aclocal.m4 changes.

View file

@ -833,13 +833,6 @@ sim_create_inferior (sd, argv, env)
return SIM_RC_OK;
}
void
sim_kill (sd)
SIM_DESC sd;
{
/* nothing to do */
}
void
sim_set_callbacks (p)
host_callback *p;

View file

@ -1,3 +1,7 @@
Tue Aug 26 10:41:35 1997 Andrew Cagney <cagney@b1.cygnus.com>
* sim_calls.c (sim_kill): Delete.
Mon Aug 25 16:17:06 1997 Andrew Cagney <cagney@b1.cygnus.com>
* sim_calls.c (sim_open): Add ABFD argument.

View file

@ -140,14 +140,6 @@ sim_load (SIM_DESC sd, char *prog, bfd *abfd, int from_tty)
}
void
sim_kill (SIM_DESC sd)
{
TRACE(trace_gdb, ("sim_kill(void) called\n"));
/* do nothing, nothing to do */
}
int
sim_read (SIM_DESC sd, SIM_ADDR mem, unsigned char *buf, int length)
{

View file

@ -1,3 +1,7 @@
Tue Aug 26 10:41:55 1997 Andrew Cagney <cagney@b1.cygnus.com>
* interp.c (sim_kill): Delete.
Mon Aug 25 17:50:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
* configure: Regenerated to track ../common/aclocal.m4 changes.

View file

@ -1257,13 +1257,6 @@ sim_create_inferior (sd, argv, env)
return SIM_RC_OK;
}
void
sim_kill (sd)
SIM_DESC sd;
{
/* nothing to do */
}
void
sim_do_command (sd, cmd)
SIM_DESC sd;

View file

@ -1,3 +1,7 @@
Tue Aug 26 10:42:13 1997 Andrew Cagney <cagney@b1.cygnus.com>
* sim-calls.c (sim_kill): Delete.
Mon Aug 25 17:50:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
* configure: Regenerated to track ../common/aclocal.m4 changes.

View file

@ -144,12 +144,6 @@ sim_load (SIM_DESC sd, char *prog, bfd *abfd, int from_tty)
}
void
sim_kill (SIM_DESC sd)
{
}
int
sim_read (SIM_DESC sd, SIM_ADDR mem, unsigned char *buf, int length)
{

View file

@ -1,3 +1,7 @@
Tue Aug 26 10:42:38 1997 Andrew Cagney <cagney@b1.cygnus.com>
* interp.c (sim_kill): Delete.
Mon Aug 25 17:50:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
* configure: Regenerated to track ../common/aclocal.m4 changes.

View file

@ -671,13 +671,6 @@ sim_create_inferior (sd, argv, env)
return SIM_RC_OK;
}
void
sim_kill (sd)
SIM_DESC sd;
{
/* nothing to do */
}
void
sim_set_callbacks (p)
host_callback *p;

View file

@ -1,3 +1,7 @@
Tue Aug 26 10:43:11 1997 Andrew Cagney <cagney@b1.cygnus.com>
* interp.c (sim_kill): Delete.
Mon Aug 25 16:34:33 1997 Andrew Cagney <cagney@b1.cygnus.com>
* interp.c (sim_open): Add ABFD argument. Change ARGV to PARGV.

View file

@ -315,12 +315,6 @@ sim_info (verbose)
void
sim_kill ()
{
}
void
sim_open (kind, cb, abfd, argv)
SIM_OPEN_KIND kind;