Skip to content

Commit

Permalink
* sysdeps/unix/sysv/linux/lowlevellock.c (__lll_lock_wait,
Browse files Browse the repository at this point in the history
__lll_timedlock_wait, lll_unlock_wake_cb, __lll_timedwait_tid): 
Remove bogus hidden_proto. 
* sysdeps/unix/sysv/linux/s390/libc-lowlevellock.c (___lll_lock): 
Likewise. 
* sysdeps/unix/sysv/linux/s390/lowlevellock.c (___lll_lock, 
lll_unlock_wake_cb, ___lll_timedwait_tid): Likewise. 
* sysdeps/unix/sysv/linux/s390/lowlevelmutex.c (___lll_mutex_lock, 
___lll_mutex_timedlock): Likewise.
2003-06-05  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/unix/sysv/linux/lowlevellock.c (__lll_lock_wait,
	__lll_timedlock_wait, lll_unlock_wake_cb, __lll_timedwait_tid):
	Remove bogus hidden_proto.
	* sysdeps/unix/sysv/linux/s390/libc-lowlevellock.c (___lll_lock):
	Likewise.
	* sysdeps/unix/sysv/linux/s390/lowlevellock.c (___lll_lock,
	lll_unlock_wake_cb, ___lll_timedwait_tid): Likewise.
	* sysdeps/unix/sysv/linux/s390/lowlevelmutex.c (___lll_mutex_lock,
	___lll_mutex_timedlock): Likewise.
  • Loading branch information
Jakub Jelinek committed Jun 5, 2003
1 parent 35915ec commit 332faa9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
12 changes: 12 additions & 0 deletions nptl/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
2003-06-05 Jakub Jelinek <jakub@redhat.com>

* sysdeps/unix/sysv/linux/lowlevellock.c (__lll_lock_wait,
__lll_timedlock_wait, lll_unlock_wake_cb, __lll_timedwait_tid):
Remove bogus hidden_proto.
* sysdeps/unix/sysv/linux/s390/libc-lowlevellock.c (___lll_lock):
Likewise.
* sysdeps/unix/sysv/linux/s390/lowlevellock.c (___lll_lock,
lll_unlock_wake_cb, ___lll_timedwait_tid): Likewise.
* sysdeps/unix/sysv/linux/s390/lowlevelmutex.c (___lll_mutex_lock,
___lll_mutex_timedlock): Likewise.

2003-06-04 Ulrich Drepper <drepper@redhat.com>

* sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S
Expand Down
4 changes: 0 additions & 4 deletions nptl/sysdeps/unix/sysv/linux/lowlevellock.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ __lll_lock_wait (int *futex, int val)
}
while (val != 0);
}
hidden_proto (__lll_lock_wait)


int
Expand Down Expand Up @@ -77,7 +76,6 @@ __lll_timedlock_wait (int *futex, int val, const struct timespec *abstime)
*futex = 2;
return 0;
}
hidden_proto (__lll_timedlock_wait)


/* These don't get included in libc.so */
Expand All @@ -92,7 +90,6 @@ lll_unlock_wake_cb (int *futex)

return 0;
}
hidden_proto (lll_unlock_wake_cb)


int
Expand Down Expand Up @@ -133,5 +130,4 @@ __lll_timedwait_tid (int *tidp, const struct timespec *abstime)
return 0;
}

hidden_proto (__lll_timedwait_tid)
#endif
1 change: 0 additions & 1 deletion nptl/sysdeps/unix/sysv/linux/s390/libc-lowlevellock.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,3 @@ ___lll_lock (futex, newval)

*futex = -1;
}
hidden_proto (___lll_lock)
3 changes: 0 additions & 3 deletions nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ ___lll_lock (futex, newval)

*futex = -1;
}
hidden_proto (___lll_lock)


int
Expand All @@ -54,7 +53,6 @@ lll_unlock_wake_cb (futex)
lll_futex_wake (futex, 1);
return 0;
}
hidden_proto (lll_unlock_wake_cb)


int
Expand Down Expand Up @@ -99,4 +97,3 @@ ___lll_timedwait_tid (ptid, abstime)
return 0;
}

hidden_proto (___lll_timedwait_tid)
2 changes: 0 additions & 2 deletions nptl/sysdeps/unix/sysv/linux/s390/lowlevelmutex.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ ___lll_mutex_lock (futex, newval)

*futex = 2;
}
hidden_proto (___lll_mutex_lock)


int
Expand Down Expand Up @@ -87,4 +86,3 @@ ___lll_mutex_timedlock (futex, abstime, newval)

return 0;
}
hidden_proto (___lll_mutex_timedlock)

0 comments on commit 332faa9

Please sign in to comment.