The branch stable/13 has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=d364264b29bca40de1a8fd728637be42644c4259
commit d364264b29bca40de1a8fd728637be42644c4259 Author: Mark Johnston <[email protected]> AuthorDate: 2021-07-23 14:30:00 +0000 Commit: Mark Johnston <[email protected]> CommitDate: 2021-07-30 00:32:58 +0000 cdefs: Add a default definition for __nosanitizememory Sponsored by: The FreeBSD Foundation (cherry picked from commit 4cd7e82a4c7aed19dd722afa809466d5a45765d6) --- sys/sys/cdefs.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/sys/cdefs.h b/sys/sys/cdefs.h index ff461db9ec2e..85e9ea227150 100644 --- a/sys/sys/cdefs.h +++ b/sys/sys/cdefs.h @@ -872,6 +872,7 @@ #define __nosanitizethread __attribute__((no_sanitize("thread"))) #else #define __nosanitizeaddress +#define __nosanitizememory #define __nosanitizethread #endif _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "[email protected]"
