From patchwork Fri Jun 12 16:13:24 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 7149 Received: (qmail 94112 invoked by alias); 12 Jun 2015 16:13:29 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 94055 invoked by uid 89); 12 Jun 2015 16:13:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL, BAYES_00, SPF_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: smtp.gentoo.org Received: from smtp.gentoo.org (HELO smtp.gentoo.org) (140.211.166.183) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Fri, 12 Jun 2015 16:13:27 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id BC567340A02 for ; Fri, 12 Jun 2015 16:13:25 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: [PATCH] sim: bfin: expand CB_SYS_xxx comment Date: Fri, 12 Jun 2015 12:13:24 -0400 Message-Id: <1434125604-21492-1-git-send-email-vapier@gentoo.org> X-IsSubscribed: yes Committed. --- sim/bfin/ChangeLog | 4 ++++ sim/bfin/interp.c | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/sim/bfin/ChangeLog b/sim/bfin/ChangeLog index 1967251..5393138 100644 --- a/sim/bfin/ChangeLog +++ b/sim/bfin/ChangeLog @@ -1,5 +1,9 @@ 2015-06-12 Mike Frysinger + * interp.c: Expand comment on CB_SYS_xxx defines. + +2015-06-12 Mike Frysinger + * configure: Regenerate. 2015-06-12 Mike Frysinger diff --git a/sim/bfin/interp.c b/sim/bfin/interp.c index bed7564..69b5e96 100644 --- a/sim/bfin/interp.c +++ b/sim/bfin/interp.c @@ -36,7 +36,9 @@ #include "targ-vals.h" -/* The numbers here do not matter. They just need to be unique. */ +/* The numbers here do not matter. They just need to be unique. They also + need not be static across releases -- they're used internally only. The + mapping from the Linux ABI to the CB values is in linux-targ-map.h. */ #define CB_SYS_ioctl 201 #define CB_SYS_mmap2 202 #define CB_SYS_munmap 203