From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1979 invoked by alias); 6 May 2003 12:29:32 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 1972 invoked from network); 6 May 2003 12:29:32 -0000 Received: from unknown (HELO hub.ott.qnx.com) (209.226.137.76) by sources.redhat.com with SMTP; 6 May 2003 12:29:32 -0000 Received: from smtp.ott.qnx.com (smtp.ott.qnx.com [10.0.2.158]) by hub.ott.qnx.com (8.9.3p2/8.9.3) with ESMTP id IAA09465; Tue, 6 May 2003 08:26:50 -0400 Received: from catdog ([10.4.2.2]) by smtp.ott.qnx.com (8.8.8/8.6.12) with SMTP id IAA15074; Tue, 6 May 2003 08:29:31 -0400 Message-ID: <07d101c313cb$29822630$0202040a@catdog> From: "Kris Warkentin" To: "Andrew Cagney" Cc: "Gdb-Patches@Sources.Redhat.Com" References: <036c01c30ff8$1c97c3c0$0202040a@catdog> <86znm3uk71.fsf@elgar.kettenis.dyndns.org> <04b201c3130e$621689e0$0202040a@catdog> <3EB73430.6030609@redhat.com> Subject: Re: [PATCH] (dagnabbit) QNX Neutrino i386 support Date: Tue, 06 May 2003 12:29:00 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-SW-Source: 2003-05/txt/msg00078.txt.bz2 > FYI, the ARI tossed up a few things in the new NTO files: > http://sources.redhat.com/gdb/current/ari/ > PARAMS (it's 2003, not the seventies :-), gdb_stat.h, ^func. This should do it. BTW, when the ARI says that I'm using something which is deprecated, is there any way to find out exactly what it found? cheers, Kris ChangeLog: * nto-tdep.c: Change stat.h include to gdb_stat.h. * nto-tdep.h: Remove PARAMS and grep ^func ARI hits. Index: nto-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/nto-tdep.c,v retrieving revision 1.1 diff -c -r1.1 nto-tdep.c *** nto-tdep.c 5 May 2003 13:57:20 -0000 1.1 --- nto-tdep.c 6 May 2003 12:15:43 -0000 *************** *** 21,27 **** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ ! #include #include "gdb_string.h" #include "nto-tdep.h" #include "top.h" --- 21,27 ---- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ ! #include "gdb_stat.h" #include "gdb_string.h" #include "nto-tdep.h" #include "top.h" Index: nto-tdep.h =================================================================== RCS file: /cvs/src/src/gdb/nto-tdep.h,v retrieving revision 1.1 diff -c -r1.1 nto-tdep.h *** nto-tdep.h 5 May 2003 13:57:20 -0000 1.1 --- nto-tdep.h 6 May 2003 12:15:43 -0000 *************** *** 29,51 **** /* Generic functions in nto-tdep.c. */ ! extern void nto_init_solib_absolute_prefix PARAMS ((void)); ! char **nto_parse_redirection ! PARAMS ((char *start_argv[], char **in, char **out, char **err)); ! int proc_iterate_over_mappings PARAMS ((int (*func) (int, CORE_ADDR))); ! void nto_relocate_section_addresses ! PARAMS ((struct so_list *, struct section_table *)); ! int nto_map_arch_to_cputype PARAMS ((const char *)); ! int nto_find_and_open_solib PARAMS ((char *, unsigned, char **)); /* Dummy function for initializing nto_target_ops on targets which do not define a particular regset. */ ! void nto_dummy_supply_regset PARAMS ((char *regs)); /* Target operations defined for Neutrino targets (-nto-tdep.c). */ --- 29,50 ---- /* Generic functions in nto-tdep.c. */ ! extern void nto_init_solib_absolute_prefix (void); ! char **nto_parse_redirection (char *start_argv[], char **in, ! char **out, char **err); ! int proc_iterate_over_mappings (int (*func) (int, CORE_ADDR)); ! void nto_relocate_section_addresses (struct so_list *, struct section_table *); ! int nto_map_arch_to_cputype (const char *); ! int nto_find_and_open_solib (char *, unsigned, char **); /* Dummy function for initializing nto_target_ops on targets which do not define a particular regset. */ ! void nto_dummy_supply_regset (char *regs); /* Target operations defined for Neutrino targets (-nto-tdep.c). */