diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-28 09:51:00 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-28 09:51:00 +0200 |
commit | d7d0efec47e76c022c3bcb30cdb4b0501d7a9b2a (patch) | |
tree | ca691e86a883bcdc427f1d56a6e8f0ded5a01503 /sysdeps/unix/sysv/linux/alpha | |
parent | 8208be389bce84be0e1c35a3daa0c3467418f921 (diff) | |
download | glibc-d7d0efec47e76c022c3bcb30cdb4b0501d7a9b2a.tar.gz glibc-d7d0efec47e76c022c3bcb30cdb4b0501d7a9b2a.tar.xz glibc-d7d0efec47e76c022c3bcb30cdb4b0501d7a9b2a.zip |
Linux: Define TIMER_T_WAS_INT_COMPAT in kernel-posix-timers.h
This is almost equivalent to __WORDSIZE == 64 && OTHER_SHLIB_COMPAT (librt, GLIBC_2_1, GLIBC_2_3_3), except that this expression is true for mips64/n64 targets as well, even though those did not undergo the timer_t transition. Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'sysdeps/unix/sysv/linux/alpha')
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/timer_t_was_int_compat.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/timer_t_was_int_compat.h b/sysdeps/unix/sysv/linux/alpha/timer_t_was_int_compat.h new file mode 100644 index 0000000000..92840d92aa --- /dev/null +++ b/sysdeps/unix/sysv/linux/alpha/timer_t_was_int_compat.h @@ -0,0 +1,19 @@ +/* timer_t/int compatibility transition. alpha version. + Copyright (C) 2021 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; see the file COPYING.LIB. If + not, see <https://www.gnu.org/licenses/>. */ + +#define TIMER_T_WAS_INT_COMPAT 1 |