git: 5593488d8bc5 - stable/13 - rtld-elf/libmap.c: correct comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 25 Sep 2022 11:19:01 UTC
The branch stable/13 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=5593488d8bc5b2e2fcf3e70d98703e7bb07e9712 commit 5593488d8bc5b2e2fcf3e70d98703e7bb07e9712 Author: Konstantin Belousov <kib@FreeBSD.org> AuthorDate: 2022-09-18 22:16:52 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2022-09-25 11:18:25 +0000 rtld-elf/libmap.c: correct comment (cherry picked from commit 1251cf8a30ac496e8c672948dabb9291a17ad71a) --- libexec/rtld-elf/libmap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libexec/rtld-elf/libmap.c b/libexec/rtld-elf/libmap.c index 854c73f39ef7..5a7c01f9d179 100644 --- a/libexec/rtld-elf/libmap.c +++ b/libexec/rtld-elf/libmap.c @@ -58,8 +58,8 @@ static const char *quickbasename(const char *); ((c) == '\n') || ((c) == '\r')) /* - * Do not use ctype.h macros, which rely on working TLS. It is - * too early to have thread-local variables functional. + * Do not use ctype.h macros, which rely on working TLS. Rtld does + * not support TLS for itself. */ #define rtld_isspace(c) ((c) == ' ' || (c) == '\t')