summaryrefslogtreecommitdiff
path: root/nptl/sysdeps/unix/sysv/linux/ia64/lowlevellock.c
diff options
context:
space:
mode:
Diffstat (limited to 'nptl/sysdeps/unix/sysv/linux/ia64/lowlevellock.c')
-rw-r--r--nptl/sysdeps/unix/sysv/linux/ia64/lowlevellock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/ia64/lowlevellock.c b/nptl/sysdeps/unix/sysv/linux/ia64/lowlevellock.c
index 651fb88598..1a1a2e1b23 100644
--- a/nptl/sysdeps/unix/sysv/linux/ia64/lowlevellock.c
+++ b/nptl/sysdeps/unix/sysv/linux/ia64/lowlevellock.c
@@ -29,7 +29,7 @@ lll_unlock_wake_cb (futex)
{
int oldval;
int val = *futex;
-
+
do
oldval = val;
while ((val = lll_compare_and_swap (futex, oldval, 0)) != oldval);
@@ -55,7 +55,7 @@ ___lll_timedwait_tid (ptid, abstime)
{
/* Get current time. */
struct timeval tv;
- gettimeofday (&tv, NULL);
+ __gettimeofday (&tv, NULL);
/* Determine relative timeout. */
struct timespec rt;