From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30975 invoked by alias); 27 Jun 2013 08:44:29 -0000 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 Received: (qmail 30957 invoked by uid 89); 27 Jun 2013 08:44:28 -0000 X-Spam-SWARE-Status: No, score=-6.9 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL,RP_MATCHES_RCVD,TW_RV,TW_TR autolearn=ham version=3.3.1 Received: from mga01.intel.com (HELO mga01.intel.com) (192.55.52.88) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Thu, 27 Jun 2013 08:44:26 +0000 Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga101.fm.intel.com with ESMTP; 27 Jun 2013 01:44:23 -0700 X-ExtLoop1: 1 Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga002.fm.intel.com with ESMTP; 27 Jun 2013 01:44:22 -0700 Received: from ulslx001.iul.intel.com (ulslx001.iul.intel.com [172.28.207.63]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id r5R8iMlt009471; Thu, 27 Jun 2013 09:44:22 +0100 Received: from ulslx001.iul.intel.com (localhost [127.0.0.1]) by ulslx001.iul.intel.com with ESMTP id r5R8iL1g003428; Thu, 27 Jun 2013 10:44:21 +0200 Received: (from mgherza1@localhost) by ulslx001.iul.intel.com with id r5R8iL6v003424; Thu, 27 Jun 2013 10:44:21 +0200 From: Mircea Gherzan To: tromey@redhat.com, palves@redhat.com, jan.kratochvil@redhat.com Cc: gdb-patches@sourceware.org, Mircea Gherzan Subject: [PATCH 0/7] increase the portability of the gdbserver code Date: Thu, 27 Jun 2013 08:44:00 -0000 Message-Id: <1372322622-3216-1-git-send-email-mircea.gherzan@intel.com> X-SW-Source: 2013-06/txt/msg00808.txt.bz2 This patch series aims to increase the compatibility of the gdbserver code with non-GCC C99 compilers and with build environments lacking functions that are GNU-specific. Mircea Gherzan (7): gdbserver, common: conditionally include the unistd.h gdbserver, common: convert some variadic macros to C99 gdbserver: avoid empty structs when not using GCC gdbserver: conditionally include sys/param.h and sys/time.h gdbserver, win32: fix some function typedefs common: add an alternative implementation for xstrvprintf gdbserver: add fallback implementation for memmem gdb/common/agent.c | 10 ++++++---- gdb/common/common-utils.c | 30 ++++++++++++++++++++++++++++++ gdb/config.in | 3 +++ gdb/configure | 2 +- gdb/configure.ac | 2 +- gdb/gdbserver/ax.c | 12 ++++++------ gdb/gdbserver/config.in | 9 +++++++++ gdb/gdbserver/configure | 4 ++-- gdb/gdbserver/configure.ac | 4 ++-- gdb/gdbserver/event-loop.c | 2 ++ gdb/gdbserver/hostio.c | 7 +++++++ gdb/gdbserver/notif.h | 4 ++++ gdb/gdbserver/remote-utils.c | 2 ++ gdb/gdbserver/server.c | 23 +++++++++++++++++++++++ gdb/gdbserver/tracepoint.c | 14 +++++++++----- gdb/gdbserver/win32-low.c | 10 ++++++---- 16 files changed, 113 insertions(+), 25 deletions(-) -- 1.7.12.4