From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26197 invoked by alias); 12 Apr 2012 13:52:35 -0000 Received: (qmail 26169 invoked by uid 22791); 12 Apr 2012 13:52:30 -0000 X-SWARE-Spam-Status: No, hits=-4.0 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_THREADED,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL X-Spam-Check-By: sourceware.org Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 12 Apr 2012 13:51:11 +0000 Received: from svr-orw-exc-10.mgc.mentorg.com ([147.34.98.58]) by relay1.mentorg.com with esmtp id 1SIKQV-0003wf-Bv from Yao_Qi@mentor.com ; Thu, 12 Apr 2012 06:51:07 -0700 Received: from SVR-ORW-FEM-02.mgc.mentorg.com ([147.34.96.206]) by SVR-ORW-EXC-10.mgc.mentorg.com with Microsoft SMTPSVC(6.0.3790.4675); Thu, 12 Apr 2012 06:50:46 -0700 Received: from [127.0.0.1] (147.34.91.1) by svr-orw-fem-02.mgc.mentorg.com (147.34.96.168) with Microsoft SMTP Server id 14.1.289.1; Thu, 12 Apr 2012 06:51:06 -0700 Message-ID: <4F86DDBF.10107@codesourcery.com> Date: Thu, 12 Apr 2012 13:59:00 -0000 From: Yao Qi User-Agent: Mozilla/5.0 (X11; Linux i686; rv:11.0) Gecko/20120329 Thunderbird/11.0.1 MIME-Version: 1.0 To: Aleksandar Ristovski CC: Pedro Alves , Mark Kettenis , Subject: Re: [PATCH] Use sized types in tracepoint. References: <1331905618-2631-1-git-send-email-yao@codesourcery.com> <201203161550.q2GFoQhS029855@glazunov.sibelius.xs4all.nl> <4F6362F0.2050906@redhat.com> <4F843CB0.5020302@codesourcery.com> <4F8440E1.40504@redhat.com> <4F844772.6030305@qnx.com> In-Reply-To: <4F844772.6030305@qnx.com> Content-Type: multipart/mixed; boundary="------------090703080307050500000703" 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: 2012-04/txt/msg00300.txt.bz2 --------------090703080307050500000703 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Content-length: 338 On 04/10/2012 10:45 PM, Aleksandar Ristovski wrote: > On 12-04-10 10:17 AM, Pedro Alves wrote: >> we don't know if including stdint.h unconditionally >> works on NTO. It most probably does. Added Aleksandar to CC. > > Yes, it works for NTO. > Here is a small patch to include stdint.h unconditionally in gdbserver. -- Yao (齐尧) --------------090703080307050500000703 Content-Type: text/x-patch; name="0009-Include-stdint.h-unconditionally.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0009-Include-stdint.h-unconditionally.patch" Content-length: 597 gdb/gdbserver: 2012-04-12 Yao Qi * tracepoint.c: Include stdint.h unconditionally. --- gdb/gdbserver/tracepoint.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/gdb/gdbserver/tracepoint.c b/gdb/gdbserver/tracepoint.c index 2144f6f..f06e3c0 100644 --- a/gdb/gdbserver/tracepoint.c +++ b/gdb/gdbserver/tracepoint.c @@ -24,9 +24,8 @@ #include #include #include -#if HAVE_STDINT_H #include -#endif + #include "ax.h" /* This file is built for both GDBserver, and the in-process -- 1.7.0.4 --------------090703080307050500000703--