From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16542 invoked by alias); 23 Nov 2009 20:18:37 -0000 Received: (qmail 16534 invoked by uid 22791); 23 Nov 2009 20:18:36 -0000 X-SWARE-Spam-Status: No, hits=-1.5 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 23 Nov 2009 20:18:33 +0000 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id nANKIWZ2004827 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 23 Nov 2009 15:18:32 -0500 Received: from localhost.localdomain (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id nANKIVCS009306 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Mon, 23 Nov 2009 15:18:31 -0500 Date: Mon, 23 Nov 2009 20:18:00 -0000 From: Kevin Buettner To: rda@sources.redhat.com Subject: [commit] Include in ptrace.c Message-ID: <20091123131830.79f48c41@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact rda-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: rda-owner@sourceware.org X-SW-Source: 2009-q4/txt/msg00002.txt.bz2 I've just committed the patch below. It's needed so that kill_lwp() will be able to find SYS_tkill if it exists. * ptrace-target.c (syscall.h): Include. Index: ptrace-target.c =================================================================== RCS file: /cvs/src/src/rda/unix/ptrace-target.c,v retrieving revision 1.14 diff -u -p -r1.14 ptrace-target.c --- ptrace-target.c 3 Oct 2006 22:49:05 -0000 1.14 +++ ptrace-target.c 23 Nov 2009 20:13:00 -0000 @@ -49,6 +49,8 @@ #include "lwp-ctrl.h" #include "diagnostics.h" +#include + /* This is unix ptrace gdbserv target that uses the RDA library to implement a remote gdbserver on a unix ptrace host. It controls the process to be debugged on the linux host, allowing GDB to pull the strings