diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-02-12 16:32:52 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-02-12 16:33:39 +0100 |
commit | bfb583e7916315eca3f19801dca1bf05eac4efef (patch) | |
tree | 50bda7a7fd58ff9a7c8b530fc87d2c80840be8ca /sysdeps/i386 | |
parent | be6d002ca277ffc90058d382396150cb0e785b9c (diff) | |
download | glibc-bfb583e7916315eca3f19801dca1bf05eac4efef.tar.gz glibc-bfb583e7916315eca3f19801dca1bf05eac4efef.tar.xz glibc-bfb583e7916315eca3f19801dca1bf05eac4efef.zip |
htl: Generalize i386 pt-machdep.h to x86
Diffstat (limited to 'sysdeps/i386')
-rw-r--r-- | sysdeps/i386/htl/Implies | 1 | ||||
-rw-r--r-- | sysdeps/i386/htl/pt-machdep.h | 28 |
2 files changed, 1 insertions, 28 deletions
diff --git a/sysdeps/i386/htl/Implies b/sysdeps/i386/htl/Implies new file mode 100644 index 0000000000..aad38fb53d --- /dev/null +++ b/sysdeps/i386/htl/Implies @@ -0,0 +1 @@ +x86/htl diff --git a/sysdeps/i386/htl/pt-machdep.h b/sysdeps/i386/htl/pt-machdep.h deleted file mode 100644 index b036909c42..0000000000 --- a/sysdeps/i386/htl/pt-machdep.h +++ /dev/null @@ -1,28 +0,0 @@ -/* Machine dependent pthreads internal defenitions. i386 version. - Copyright (C) 2000-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 - <https://www.gnu.org/licenses/>. */ - -#ifndef _PT_MACHDEP_H -#define _PT_MACHDEP_H 1 - -struct pthread_mcontext -{ - void *pc; - void *sp; -}; - -#endif /* pt-machdep.h */ |