public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] sanitizer: cherry pick 414482751452e54710f16bae58458c66298aaf69
@ 2021-08-05  8:46 Martin Liška
  0 siblings, 0 replies; only message in thread
From: Martin Liška @ 2021-08-05  8:46 UTC (permalink / raw)
  To: gcc-patches

I'm going to push the commit to all active branches (except master).

The patch is needed in order to support recent glibc (2.34).

libsanitizer/ChangeLog:

	PR sanitizer/101749
	* sanitizer_common/sanitizer_posix_libcdep.cpp: Prevent
	generation of dependency on _cxa_guard for static
	initialization.
---
  libsanitizer/sanitizer_common/sanitizer_posix_libcdep.cpp | 7 ++++---
  1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/libsanitizer/sanitizer_common/sanitizer_posix_libcdep.cpp b/libsanitizer/sanitizer_common/sanitizer_posix_libcdep.cpp
index 7ff48c35851..a65b16f5290 100644
--- a/libsanitizer/sanitizer_common/sanitizer_posix_libcdep.cpp
+++ b/libsanitizer/sanitizer_common/sanitizer_posix_libcdep.cpp
@@ -166,9 +166,10 @@ bool SupportsColoredOutput(fd_t fd) {
  #if !SANITIZER_GO
  // TODO(glider): different tools may require different altstack size.
  static uptr GetAltStackSize() {
-  // SIGSTKSZ is not enough.
-  static const uptr kAltStackSize = SIGSTKSZ * 4;
-  return kAltStackSize;
+  // Note: since GLIBC_2.31, SIGSTKSZ may be a function call, so this may be
+  // more costly that you think. However GetAltStackSize is only call 2-3 times
+  // per thread so don't cache the evaluation.
+  return SIGSTKSZ * 4;
  }
  
  void SetAlternateSignalStack() {
-- 
2.32.0


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-08-05  8:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-05  8:46 [PATCH] sanitizer: cherry pick 414482751452e54710f16bae58458c66298aaf69 Martin Liška

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).