From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4039 invoked by alias); 21 May 2009 23:00:29 -0000 Received: (qmail 4015 invoked by uid 22791); 21 May 2009 23:00:27 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_42,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (65.74.133.4) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 21 May 2009 23:00:23 +0000 Received: (qmail 6068 invoked from network); 21 May 2009 23:00:21 -0000 Received: from unknown (HELO orlando) (pedro@127.0.0.2) by mail.codesourcery.com with ESMTPA; 21 May 2009 23:00:21 -0000 From: Pedro Alves To: gdb-patches@sourceware.org Subject: Re: [commit] fix build failure in aix-thread.c:aix_thread_wait Date: Thu, 21 May 2009 23:00:00 -0000 User-Agent: KMail/1.9.10 Cc: Joel Brobecker References: <20090521223532.GK16152@adacore.com> In-Reply-To: <20090521223532.GK16152@adacore.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200905220000.21601.pedro@codesourcery.com> X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2009-05/txt/msg00471.txt.bz2 On Thursday 21 May 2009 23:35:32, Joel Brobecker wrote: > Just an oversight from a patch that added an extra "options" parameter > for the "to_wait" target_ops method. Fixed thusly. Thanks Joel. I naively grep'ed for "to_wait = ", and missed that one. Would you mind if I applied this? -- Pedro Alves 2009-05-21 Pedro Alves * aix-thread.c (init_aix_thread_ops): Whitespace. --- gdb/aix-thread.c | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) Index: src/gdb/aix-thread.c =================================================================== --- src.orig/gdb/aix-thread.c 2009-05-21 23:57:13.000000000 +0100 +++ src/gdb/aix-thread.c 2009-05-21 23:58:13.000000000 +0100 @@ -1792,26 +1792,26 @@ aix_thread_get_ada_task_ptid (long lwp, static void init_aix_thread_ops (void) { - aix_thread_ops.to_shortname = "aix-threads"; - aix_thread_ops.to_longname = _("AIX pthread support"); - aix_thread_ops.to_doc = _("AIX pthread support"); + aix_thread_ops.to_shortname = "aix-threads"; + aix_thread_ops.to_longname = _("AIX pthread support"); + aix_thread_ops.to_doc = _("AIX pthread support"); - aix_thread_ops.to_attach = aix_thread_attach; - aix_thread_ops.to_detach = aix_thread_detach; - aix_thread_ops.to_resume = aix_thread_resume; - aix_thread_ops.to_wait = aix_thread_wait; - aix_thread_ops.to_fetch_registers = aix_thread_fetch_registers; - aix_thread_ops.to_store_registers = aix_thread_store_registers; - aix_thread_ops.to_xfer_partial = aix_thread_xfer_partial; + aix_thread_ops.to_attach = aix_thread_attach; + aix_thread_ops.to_detach = aix_thread_detach; + aix_thread_ops.to_resume = aix_thread_resume; + aix_thread_ops.to_wait = aix_thread_wait; + aix_thread_ops.to_fetch_registers = aix_thread_fetch_registers; + aix_thread_ops.to_store_registers = aix_thread_store_registers; + aix_thread_ops.to_xfer_partial = aix_thread_xfer_partial; /* No need for aix_thread_ops.to_create_inferior, because we activate thread debugging when the inferior reaches pd_brk_addr. */ - aix_thread_ops.to_mourn_inferior = aix_thread_mourn_inferior; - aix_thread_ops.to_thread_alive = aix_thread_thread_alive; - aix_thread_ops.to_pid_to_str = aix_thread_pid_to_str; - aix_thread_ops.to_extra_thread_info = aix_thread_extra_thread_info; - aix_thread_ops.to_get_ada_task_ptid = aix_thread_get_ada_task_ptid; - aix_thread_ops.to_stratum = thread_stratum; - aix_thread_ops.to_magic = OPS_MAGIC; + aix_thread_ops.to_mourn_inferior = aix_thread_mourn_inferior; + aix_thread_ops.to_thread_alive = aix_thread_thread_alive; + aix_thread_ops.to_pid_to_str = aix_thread_pid_to_str; + aix_thread_ops.to_extra_thread_info = aix_thread_extra_thread_info; + aix_thread_ops.to_get_ada_task_ptid = aix_thread_get_ada_task_ptid; + aix_thread_ops.to_stratum = thread_stratum; + aix_thread_ops.to_magic = OPS_MAGIC; } /* Module startup initialization function, automagically called by