From 531aec7c52b66cd750a28a698f3c060f279b18b0 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 20 Oct 2024 16:56:59 -0700 Subject: [PATCH] libbacktrace: remove extra characters in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d180784..1a7a045 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ occurs or to gather detailed profiling information. In general the functions provided by this library are async-signal-safe, meaning that they may be safely called from a signal handler. That said, on systems that use `dl_iterate_phdr`, such as GNU/Linux, -gitthe first call to a libbacktrace function will call `dl_iterate_phdr`, +the first call to a libbacktrace function will call `dl_iterate_phdr`, which is not in general async-signal-safe. Therefore, programs that call libbacktrace from a signal handler should ensure that they make an initial call from outside of a signal handler.