From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1921) id 16EF7385BAE6; Mon, 11 Jul 2022 09:53:53 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 16EF7385BAE6 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Sebastian Huber To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] cdefs: Add a default definition for __nosanitizememory X-Act-Checkin: newlib-cygwin X-Git-Author: Mark Johnston X-Git-Refname: refs/heads/master X-Git-Oldrev: 8801440e4f8e2d67d94716fafa59847198522f11 X-Git-Newrev: f537ff8ee5c34ceef43d8e1e1b427b65ddaa8967 Message-Id: <20220711095353.16EF7385BAE6@sourceware.org> Date: Mon, 11 Jul 2022 09:53:53 +0000 (GMT) X-BeenThere: newlib-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib GIT logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jul 2022 09:53:53 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3Df537ff8ee5c= 34ceef43d8e1e1b427b65ddaa8967 commit f537ff8ee5c34ceef43d8e1e1b427b65ddaa8967 Author: Mark Johnston Date: Fri Jul 23 10:30:00 2021 -0400 cdefs: Add a default definition for __nosanitizememory =20 MFC after: 1 week Sponsored by: The FreeBSD Foundation Diff: --- newlib/libc/include/sys/cdefs.h | 1 + 1 file changed, 1 insertion(+) diff --git a/newlib/libc/include/sys/cdefs.h b/newlib/libc/include/sys/cdef= s.h index 7eb6c0430..b3508f3a9 100644 --- a/newlib/libc/include/sys/cdefs.h +++ b/newlib/libc/include/sys/cdefs.h @@ -714,6 +714,7 @@ #define __nosanitizethread __attribute__((no_sanitize("thread"))) #else #define __nosanitizeaddress +#define __nosanitizememory #define __nosanitizethread #endif