From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28646 invoked by alias); 27 Apr 2011 14:30:51 -0000 Received: (qmail 28638 invoked by uid 22791); 27 Apr 2011 14:30:51 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00,TW_EG,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 27 Apr 2011 14:30:00 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id F24182BB037; Wed, 27 Apr 2011 10:29:59 -0400 (EDT) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id zHYNMckDhlgS; Wed, 27 Apr 2011 10:29:59 -0400 (EDT) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id C788D2BB034; Wed, 27 Apr 2011 10:29:59 -0400 (EDT) Received: by joel.gnat.com (Postfix, from userid 1000) id 751EB145615; Wed, 27 Apr 2011 07:29:56 -0700 (PDT) From: Joel Brobecker To: gdb-patches@sourceware.org Cc: Joel Brobecker Subject: [commit] fix procfs.c:procfs_pass_signals advance declaration Date: Wed, 27 Apr 2011 14:30:00 -0000 Message-Id: <1303914595-23481-1-git-send-email-brobecker@adacore.com> 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: 2011-04/txt/msg00505.txt.bz2 Argh - I forgot to tell Ulrich when I tested his patch that there was one discrepancy. I fixed it locally, and even prepared the patch, but then forgot when I sent my reply. Fixed thusly. gdb/ChangeLog: * procfs.c (procfs_pass_signals): Fix advance declaration. --- gdb/ChangeLog | 4 ++++ gdb/procfs.c | 2 +- 2 files changed, 5 insertions(+), 1 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d829658..e004ee6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2011-04-27 Joel Brobecker + + * procfs.c (procfs_pass_signals): Fix advance declaration. + 2011-04-27 Ulrich Weigand * target.h (struct target_ops): Remove to_notice_signals; diff --git a/gdb/procfs.c b/gdb/procfs.c index 2a21526..917e122 100644 --- a/gdb/procfs.c +++ b/gdb/procfs.c @@ -120,7 +120,7 @@ static void procfs_fetch_registers (struct target_ops *, struct regcache *, int); static void procfs_store_registers (struct target_ops *, struct regcache *, int); -static void procfs_pass_signals (ptid_t, int, unsigned char *); +static void procfs_pass_signals (int, unsigned char *); static void procfs_kill_inferior (struct target_ops *ops); static void procfs_mourn_inferior (struct target_ops *ops); static void procfs_create_inferior (struct target_ops *, char *, -- 1.7.1