From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29320 invoked by alias); 9 May 2012 09:16:39 -0000 Received: (qmail 29296 invoked by uid 22791); 9 May 2012 09:16:37 -0000 X-SWARE-Spam-Status: No, hits=-4.1 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,KHOP_RCVD_TRUST,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-we0-f169.google.com (HELO mail-we0-f169.google.com) (74.125.82.169) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 09 May 2012 09:16:22 +0000 Received: by werc12 with SMTP id c12so47244wer.0 for ; Wed, 09 May 2012 02:16:21 -0700 (PDT) MIME-Version: 1.0 Received: by 10.180.80.97 with SMTP id q1mr21172071wix.13.1336554981063; Wed, 09 May 2012 02:16:21 -0700 (PDT) Received: by 10.180.104.201 with HTTP; Wed, 9 May 2012 02:16:21 -0700 (PDT) Date: Wed, 09 May 2012 09:16:00 -0000 Message-ID: Subject: [design change] record-replay linux ABI level From: oza Pawandeep To: gdb@sourceware.org, gdb-patches@sourceware.org Content-Type: text/plain; charset=ISO-8859-1 X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2012-05/txt/msg00031.txt.bz2 Hi all, currently linux-record.h is having defination of enum gdb_syscall {...} which seems generic one, but infact it only addresses i386 arch. the way the arm syscall number defined are different and mapping is different. I am thinking of moving all the definition to i386 specific files (assuming there is no generic way to address all the systemcalls on all arch). there might be similar instances which also like to be moved to i386 specific file (for e.g. struct linux_record_tdep { /* The size of the type that will be used in a system call. */ int size_pointer; int size__old_kernel_stat; int size_tms; - - - - - } please let me know any input for the same, as I am working on arm syscall recording part. Regards, Oza.