From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 35218 invoked by alias); 9 Nov 2018 20:04:52 -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 35166 invoked by uid 89); 9 Nov 2018 20:04:47 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-11.6 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_2,GIT_PATCH_3,SPF_HELO_PASS,SPF_SOFTFAIL autolearn=ham version=3.3.2 spammy=2.18.0, 2180 X-HELO: mail.baldwin.cx Received: from bigwig.baldwin.cx (HELO mail.baldwin.cx) (96.47.65.170) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 09 Nov 2018 20:04:46 +0000 Received: from ralph.baldwin.cx (ralph.baldwin.cx [66.234.199.215]) by mail.baldwin.cx (Postfix) with ESMTPSA id 580B110B68A for ; Fri, 9 Nov 2018 15:04:44 -0500 (EST) From: John Baldwin To: gdb-patches@sourceware.org Subject: [PATCH v3 0/3] Update FreeBSD's syscall table Date: Fri, 09 Nov 2018 20:04:00 -0000 Message-Id: <20181109200432.84491-1-jhb@FreeBSD.org> X-IsSubscribed: yes X-SW-Source: 2018-11/txt/msg00171.txt.bz2 Relative to V2, this changes the "get syscalls" functions to pass in an integer vector by reference to append syscall numbers to. It also adds a NEWS entry and fixes some other nits noted by reviewers on the V2 series. John Baldwin (3): Change get_syscalls_by_group to append to an existing vector of integers. Add an optional "alias" attribute to syscall entries. Update the FreeBSD system call table to match FreeBSD 12.0. gdb/ChangeLog | 41 ++++++++++++ gdb/NEWS | 5 ++ gdb/break-catch-syscall.c | 25 ++------ gdb/gdbarch.h | 3 - gdb/gdbarch.sh | 3 - gdb/syscalls/freebsd.xml | 110 ++++++++++++++++++++++++++------- gdb/syscalls/gdb-syscalls.dtd | 1 + gdb/syscalls/update-freebsd.sh | 78 +++++++++++++++++++++++ gdb/xml-syscall.c | 108 ++++++++++++++++---------------- gdb/xml-syscall.h | 20 +++--- 10 files changed, 279 insertions(+), 115 deletions(-) create mode 100755 gdb/syscalls/update-freebsd.sh -- 2.18.0