diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2023-02-12 14:10:41 +0300 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-02-12 16:12:06 +0100 |
commit | be6d002ca277ffc90058d382396150cb0e785b9c (patch) | |
tree | c73908d5543944ea905e50ef7eda66dc7eab8000 /sysdeps | |
parent | 4fedebc9110809b5965e42f659d3477f4c89def8 (diff) | |
download | glibc-be6d002ca277ffc90058d382396150cb0e785b9c.zip glibc-be6d002ca277ffc90058d382396150cb0e785b9c.tar.gz glibc-be6d002ca277ffc90058d382396150cb0e785b9c.tar.bz2 |
hurd: Set up the basic tree for x86_64-gnu
And move pt-setup.c to the generic x86 tree.
Signed-off-by: Sergey Bugaev <bugaevc@gmail.com>
Message-Id: <20230212111044.610942-11-bugaevc@gmail.com>
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/mach/hurd/Implies | 1 | ||||
-rw-r--r-- | sysdeps/mach/hurd/i386/htl/Implies | 1 | ||||
-rw-r--r-- | sysdeps/mach/hurd/x86/htl/pt-setup.c (renamed from sysdeps/mach/hurd/i386/htl/pt-setup.c) | 4 | ||||
-rw-r--r-- | sysdeps/mach/hurd/x86_64/Implies | 2 | ||||
-rw-r--r-- | sysdeps/mach/hurd/x86_64/htl/Implies | 3 | ||||
-rw-r--r-- | sysdeps/mach/x86_64/Implies | 1 |
6 files changed, 10 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/Implies b/sysdeps/mach/hurd/Implies index d2d5234..e19dd1f 100644 --- a/sysdeps/mach/hurd/Implies +++ b/sysdeps/mach/hurd/Implies @@ -3,3 +3,4 @@ gnu # The Hurd provides a rough superset of the functionality of 4.4 BSD. unix/bsd +mach/hurd/htl diff --git a/sysdeps/mach/hurd/i386/htl/Implies b/sysdeps/mach/hurd/i386/htl/Implies index 7a0f99d..fe3bd98 100644 --- a/sysdeps/mach/hurd/i386/htl/Implies +++ b/sysdeps/mach/hurd/i386/htl/Implies @@ -1,2 +1,3 @@ mach/hurd/htl +mach/hurd/x86/htl i386/htl diff --git a/sysdeps/mach/hurd/i386/htl/pt-setup.c b/sysdeps/mach/hurd/x86/htl/pt-setup.c index 94caed8..3abd92b 100644 --- a/sysdeps/mach/hurd/i386/htl/pt-setup.c +++ b/sysdeps/mach/hurd/x86/htl/pt-setup.c @@ -1,4 +1,4 @@ -/* Setup thread stack. Hurd/i386 version. +/* Setup thread stack. Hurd/x86 version. Copyright (C) 2000-2023 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -22,7 +22,7 @@ #include <pt-internal.h> -/* The stack layout used on the i386 is: +/* The stack layout used on the x86 is: ----------------- | ARG | diff --git a/sysdeps/mach/hurd/x86_64/Implies b/sysdeps/mach/hurd/x86_64/Implies new file mode 100644 index 0000000..6b5e6f4 --- /dev/null +++ b/sysdeps/mach/hurd/x86_64/Implies @@ -0,0 +1,2 @@ +mach/hurd/x86 +mach/hurd/x86_64/htl diff --git a/sysdeps/mach/hurd/x86_64/htl/Implies b/sysdeps/mach/hurd/x86_64/htl/Implies new file mode 100644 index 0000000..1ae8f16 --- /dev/null +++ b/sysdeps/mach/hurd/x86_64/htl/Implies @@ -0,0 +1,3 @@ +mach/hurd/htl +mach/hurd/x86/htl +x86_64/htl diff --git a/sysdeps/mach/x86_64/Implies b/sysdeps/mach/x86_64/Implies new file mode 100644 index 0000000..da8291f --- /dev/null +++ b/sysdeps/mach/x86_64/Implies @@ -0,0 +1 @@ +mach/x86 |