diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-03-05 16:38:07 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-03-05 16:38:07 +0000 |
commit | 1156ec40a328759b5379cb58c588bad3d600ecdd (patch) | |
tree | 3a3c1c1b713cf30a3c512074ca25eca450b9e3cb /gdb/ocd.h | |
parent | cf3d9e7e57eae22b4f2c5e009a210572f1655c56 (diff) | |
download | gdb-1156ec40a328759b5379cb58c588bad3d600ecdd.tar.gz |
* ocd.h (ocd_xfer_memory): Add ``attrib'' parameter.
* ocd.c (ocd_xfer_memory): Ditto.
* ser-ocd.c (ocd_setstopbits): New function. Add to ocd_ops.
* MAINTAINERS: Document powerpc-eabi and powerpcle-eabi as
buildable with ,-Werror.
* Makefile.in (symfile_h): Define.
(mcore-tdep.o): Add $(symfile_h), $(gdbcore_h) and $(inferior_h).
* mcore-tdep.c: Include "symfile.h", "gdbcore.h" and "inferior.h".
* MAINTAINERS: Document mcore-elf and mcore-pe as buildable with
,-Werror.
* dsrec.c (make_srec): Fix internal_error fmt arg.
* MAINTAINERS: Document i960-coff as buildable with ,-Werror.
Diffstat (limited to 'gdb/ocd.h')
-rw-r--r-- | gdb/ocd.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/ocd.h b/gdb/ocd.h index 85636e83281..28fc219db3c 100644 --- a/gdb/ocd.h +++ b/gdb/ocd.h @@ -103,7 +103,9 @@ void ocd_files_info (struct target_ops *ignore); int ocd_xfer_memory (CORE_ADDR memaddr, char *myaddr, - int len, int should_write, struct target_ops *target); + int len, int should_write, + struct mem_attrib *attrib, + struct target_ops *target); void ocd_mourn (void); |