From: Willy Tarreau Date: Sun, 2 Nov 2025 14:25:48 +0000 (+0100) Subject: tools/nolibc: clean up outdated comments in generic arch.h X-Git-Tag: v6.19-rc1~194^2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7534b9bfe691836eb7ab66332505629a4bfa4eed;p=thirdparty%2Fkernel%2Flinux.git tools/nolibc: clean up outdated comments in generic arch.h Along the code reorganizations, the file has been keeping the original comments about argv and envp which are no longer relevant to this file anymore. Let's just drop them. Acked-by: Thomas Weißschuh Signed-off-by: Willy Tarreau --- diff --git a/tools/include/nolibc/arch.h b/tools/include/nolibc/arch.h index 426c891981355..0871c439be7d2 100644 --- a/tools/include/nolibc/arch.h +++ b/tools/include/nolibc/arch.h @@ -3,15 +3,6 @@ * Copyright (C) 2017-2022 Willy Tarreau */ -/* Below comes the architecture-specific code. For each architecture, we have - * the syscall declarations and the _start code definition. This is the only - * global part. On all architectures the kernel puts everything in the stack - * before jumping to _start just above us, without any return address (_start - * is not a function but an entry point). So at the stack pointer we find argc. - * Then argv[] begins, and ends at the first NULL. Then we have envp which - * starts and ends with a NULL as well. So envp=argv+argc+1. - */ - #ifndef _NOLIBC_ARCH_H #define _NOLIBC_ARCH_H