From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 Received: from integral2.. (unknown [182.2.42.189]) by gnuweeb.org (Postfix) with ESMTPSA id 89E937E324; Sun, 20 Mar 2022 09:38:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1647769127; bh=CqkJi4gcwtTSWVKYAtlVVoCfJnF5oK9/pwQGZcP0YAI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=mGobdSn1ABsRF1yZIw4UyIDUlCf6GLC/BcGhWqquifBfpRLRVigYYA3QVTyau/AzM RODzfjiCsBtSKmg1Vm+Fgcds7AASdN/On/Q/j9s4K0bMaGt4UenVh5rpfhO71iNdk9 jPJjIPhfJ8m6ODIfznfjq0Bl3sQ1E/iPGWsZq8TBZmYPWOJRn4Z32hcJYo0uKN5mno 8S9+rI+nkTT7pULN5HRakimI58lIYnOEq5/7wDt9BiT2DDrEq5z2EUfvl8YsiAshR9 +b+T64414N+X/Mi78/xtzlsWQA6g8KcNiYj7SJMc5zatdIGfndyrymBS0j43E/V43f UHKKIdWrKSOLw== From: Ammar Faizi To: Willy Tarreau Cc: "Paul E. McKenney" , Alviro Iskandar Setiawan , Nugraha , Linux Kernel Mailing List , GNU/Weeb Mailing List , Ammar Faizi Subject: [RFC PATCH v1 1/6] tools/nolibc: x86-64: Update System V ABI document link Date: Sun, 20 Mar 2022 16:37:45 +0700 Message-Id: <20220320093750.159991-2-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20220320093750.159991-1-ammarfaizi2@gnuweeb.org> References: <20220320093750.159991-1-ammarfaizi2@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: The old link no longer works, update it. Signed-off-by: Ammar Faizi --- tools/include/nolibc/arch-x86_64.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/include/nolibc/arch-x86_64.h b/tools/include/nolibc/arch-x86_64.h index fe517c16cd4d..a7b70ea51b68 100644 --- a/tools/include/nolibc/arch-x86_64.h +++ b/tools/include/nolibc/arch-x86_64.h @@ -61,7 +61,7 @@ struct sys_stat_struct { * - see also x86-64 ABI section A.2 AMD64 Linux Kernel Conventions, A.2.1 * Calling Conventions. * - * Link x86-64 ABI: https://gitlab.com/x86-psABIs/x86-64-ABI/-/wikis/x86-64-psABI + * Link x86-64 ABI: https://gitlab.com/x86-psABIs/x86-64-ABI/-/wikis/home * */ -- Ammar Faizi