This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[patch] fix a29k build probs


FYI,

More bugs turned up by the K&R -> ISO changes.

	Andrew
Wed Aug  2 13:06:25 2000  Andrew Cagney  <cagney@b1.cygnus.com>

	* remote-udi.c (udi_xfer_inferior_memory, udi_files_info,
 	udi_kill): Update function signatures so that match target vector.
	* MAINTAINERS: Update.

Index: MAINTAINERS
===================================================================
RCS file: /cvs/src/src/gdb/MAINTAINERS,v
retrieving revision 1.41
diff -p -r1.41 MAINTAINERS
*** MAINTAINERS	2000/08/01 13:48:55	1.41
--- MAINTAINERS	2000/08/02 04:16:09
*************** variants.  *-tdep.c. The Target/Architec
*** 30,36 ****
  host maintainer when resolving build issues.  The Target/Architecture
  maintainer works with the native maintainer when resolving API issues.
  
! 	a29k		maintenance only (a29k-amd-udi)
  	alpha		maintenance only (alpha-dec-osf4.0a)
  	arc		maintenance only (arc-elf)
  
--- 30,36 ----
  host maintainer when resolving build issues.  The Target/Architecture
  maintainer works with the native maintainer when resolving API issues.
  
! 	a29k		maintenance only (a29k-amd-udi -Werror)
  	alpha		maintenance only (alpha-dec-osf4.0a)
  	arc		maintenance only (arc-elf)
  
Index: remote-udi.c
===================================================================
RCS file: /cvs/src/src/gdb/remote-udi.c,v
retrieving revision 1.6
diff -p -r1.6 remote-udi.c
*** remote-udi.c	2000/07/30 01:48:27	1.6
--- remote-udi.c	2000/08/02 04:16:13
*************** translate_addr (CORE_ADDR addr)
*** 922,928 ****
  /************************************************* UDI_XFER_INFERIOR_MEMORY */
  /* FIXME!  Merge these two.  */
  static int
! udi_xfer_inferior_memory (CORE_ADDR memaddr, char *myaddr, int len, int write)
  {
  
    memaddr = translate_addr (memaddr);
--- 922,929 ----
  /************************************************* UDI_XFER_INFERIOR_MEMORY */
  /* FIXME!  Merge these two.  */
  static int
! udi_xfer_inferior_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
! 			  struct target_ops * target)
  {
  
    memaddr = translate_addr (memaddr);
*************** udi_xfer_inferior_memory (CORE_ADDR mema
*** 935,941 ****
  
  /********************************************************** UDI_FILES_INFO */
  static void
! udi_files_info (void)
  {
    printf_unfiltered ("\tAttached to UDI socket to %s", udi_config_id);
    if (prog_name != NULL)
--- 936,942 ----
  
  /********************************************************** UDI_FILES_INFO */
  static void
! udi_files_info (struct target_ops *target)
  {
    printf_unfiltered ("\tAttached to UDI socket to %s", udi_config_id);
    if (prog_name != NULL)
*************** udi_remove_breakpoint (CORE_ADDR addr, c
*** 998,1004 ****
  }
  
  static void
! udi_kill (char *arg, int from_tty)
  {
  
  #if 0
--- 999,1005 ----
  }
  
  static void
! udi_kill (void)
  {
  
  #if 0

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]