From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1792) id 61FC73858431; Sun, 2 Apr 2023 23:28:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 61FC73858431 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1680478130; bh=2KK3D/x+fc7d7j+JwCuh1IehplEtMnM3r3ho0j+uUic=; h=From:To:Subject:Date:From; b=FcypelYapjvK3aZheMuU+HL4WuSLqMJbiMs/BMr278Dwmx5gtP5CnM7V5OZLgrlKy y69zfVqINmUX1QjqymQUGPH8BGrVSNbDWrJZEBIv6Zwy9rmhuNZfyP2+TL2rXekTar II+oggL1I6f+LvF4uyYaHEoEgD3hFPXINLr/GhpE= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Samuel Thibault To: glibc-cvs@sourceware.org Subject: [glibc] x86_64: Add rtld-stpncpy & rtld-strncpy X-Act-Checkin: glibc X-Git-Author: Sergey Bugaev X-Git-Refname: refs/heads/master X-Git-Oldrev: fb9e7f6732311ed8874b6afc1ff4a331a9e6ba68 X-Git-Newrev: 8d873a4904e7808110a1170aba9ba9f74cd71137 Message-Id: <20230402232850.61FC73858431@sourceware.org> Date: Sun, 2 Apr 2023 23:28:50 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=8d873a4904e7808110a1170aba9ba9f74cd71137 commit 8d873a4904e7808110a1170aba9ba9f74cd71137 Author: Sergey Bugaev Date: Sun Mar 19 18:10:04 2023 +0300 x86_64: Add rtld-stpncpy & rtld-strncpy Just like the other existing rtld-str* files, this provides rtld with usable versions of stpncpy and strncpy. Signed-off-by: Sergey Bugaev Message-Id: <20230319151017.531737-22-bugaevc@gmail.com> Diff: --- sysdeps/x86_64/multiarch/rtld-stpncpy.S | 18 ++++++++++++++++++ sysdeps/x86_64/multiarch/rtld-strncpy.S | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/sysdeps/x86_64/multiarch/rtld-stpncpy.S b/sysdeps/x86_64/multiarch/rtld-stpncpy.S new file mode 100644 index 0000000000..1c6780a1e1 --- /dev/null +++ b/sysdeps/x86_64/multiarch/rtld-stpncpy.S @@ -0,0 +1,18 @@ +/* Copyright (C) 2022-2023 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include "../stpncpy.S" diff --git a/sysdeps/x86_64/multiarch/rtld-strncpy.S b/sysdeps/x86_64/multiarch/rtld-strncpy.S new file mode 100644 index 0000000000..500a10020e --- /dev/null +++ b/sysdeps/x86_64/multiarch/rtld-strncpy.S @@ -0,0 +1,18 @@ +/* Copyright (C) 2022-2023 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include "../strncpy.S"