binary files oring in the right bit.
* main.c, source.c, state.c, symmisc.c: use macros defined in
fopen-{bin|both} when fopening files.
* remote-hms.c, remote-sim.c: lint
hms_close (quitting)
int quitting;
{
-
/* Clear any break points */
hms_clear_breakpoints ();
-
- /* Put this port back into REMOTE mode */
sleep (1); /* Let any output make it all the way back */
- serial_write ("R\r", 2);
- serial_close ();
+ if (is_open) {
+ serial_write ("R\r", 2);
+ serial_close ();
+ }
is_open = 0;
}
return sim_write(memaddr, myaddr, len);
}
-static int
+static void
store_register(regno)
int regno;
{
{
sim_store_register(regno, read_register(regno));
}
- return 0;
}
-static int
+static void
sim_open (name, from_tty)
char *name;
int from_tty;
{
name = "";
}
-
push_target (&sim_ops);
target_fetch_registers(-1);
printf_filtered("Connected to the simulator.\n");
/* Close out all files and local state before this target loses control. */
-static int
+static void
sim_close (quitting)
int quitting;
{
/* Terminate the open connection to the remote debugger.
Use this when you want to detach and do something else
with your gdb. */
-int
+void
sim_detach (args,from_tty)
char *args;
int from_tty;
pop_target(); /* calls sim_close to do the real work */
if (from_tty)
printf_filtered ("Ending remote %s debugging\n", target_shortname);
- return 0;
+
}
/* Tell the remote machine to resume. */
}
-static int rem_resume(a,b)
+static void rem_resume(a,b)
{
sim_resume(a,b);
- return 0;
}
+void
pstore()
{
- return 1;
}
/* Define the target subroutine names */
alloc_formnode ()
{
struct formnode *fnp;
-
fnp = (struct formnode *) xmalloc (sizeof (struct formnode));
(void) memset (fnp, 0, sizeof (struct formnode));
fnp -> sibling = formtree;
filename = tilde_expand (*argv);
make_cleanup (free, filename);
- if ((fp = fopen (filename, "r")) == NULL)
+ if ((fp = fopen (filename, FOPEN_RB)) == NULL)
{
perror_with_name (filename);
}
/* Now attempt to create a fresh state file. */
- if ((asfd = sfd_fopen (filename, "w")) == NULL)
+ if ((asfd = sfd_fopen (filename, FOPEN_WB)) == NULL)
{
perror_with_name (filename);
}