1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

sysv/linux: Rename alpha functions to be alpha specific

These functions are alpha specifc, rename them to be clear.

Let's also rename the header file from tv32-compat.h to
alpha-tv32-compat.h. This is to avoid conflicts with the one we will
introduce later.

Reviewed-by: Lukasz Majewski <lukma@denx.de>
Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
This commit is contained in:
Alistair Francis
2020-01-20 23:54:35 -08:00
parent e8a0f5831e
commit 4da2597af5
9 changed files with 32 additions and 32 deletions

View File

@@ -21,7 +21,7 @@
#if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1)
#include <sys/time.h>
#include <tv32-compat.h>
#include <alpha-tv32-compat.h>
int
attribute_compat_text_section
@@ -33,9 +33,9 @@ __getitimer_tv32 (int which, struct itimerval32 *curr_value)
/* Write all fields of 'curr_value' regardless of overflow. */
curr_value->it_interval
= valid_timeval_to_timeval32 (curr_value_64.it_interval);
= alpha_valid_timeval_to_timeval32 (curr_value_64.it_interval);
curr_value->it_value
= valid_timeval_to_timeval32 (curr_value_64.it_value);
= alpha_valid_timeval_to_timeval32 (curr_value_64.it_value);
return 0;
}