Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-6]: src/lib/libc/thread-stub Pull up following revision(s) (reque...
details: https://anonhg.NetBSD.org/src/rev/59928662c679
branches: netbsd-6
changeset: 775780:59928662c679
user: riz <riz%NetBSD.org@localhost>
date: Mon Apr 29 23:35:31 2013 +0000
description:
Pull up following revision(s) (requested by joerg in ticket #869):
Needed to fix build on alpha:
lib/libc/thread-stub/thread-stub.c: revision 1.25
Weak alias directly to the catchall stub and don't strong alias twice.
diffstat:
lib/libc/thread-stub/thread-stub.c | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diffs (33 lines):
diff -r 1a793a7a4ef3 -r 59928662c679 lib/libc/thread-stub/thread-stub.c
--- a/lib/libc/thread-stub/thread-stub.c Mon Apr 29 03:32:43 2013 +0000
+++ b/lib/libc/thread-stub/thread-stub.c Mon Apr 29 23:35:31 2013 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: thread-stub.c,v 1.22.4.1 2013/04/29 01:50:20 riz Exp $ */
+/* $NetBSD: thread-stub.c,v 1.22.4.2 2013/04/29 23:35:31 riz Exp $ */
/*-
* Copyright (c) 2003, 2009 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: thread-stub.c,v 1.22.4.1 2013/04/29 01:50:20 riz Exp $");
+__RCSID("$NetBSD: thread-stub.c,v 1.22.4.2 2013/04/29 23:35:31 riz Exp $");
#endif /* LIBC_SCCS and not lint */
/*
@@ -155,13 +155,12 @@
__weak_alias(__libc_cond_init,__libc_cond_init_stub)
__weak_alias(__libc_cond_signal,__libc_cond_catchall_stub)
__weak_alias(__libc_cond_broadcast,__libc_cond_catchall_stub)
-__weak_alias(__libc_cond_wait,__libc_cond_wait_stub)
+__weak_alias(__libc_cond_wait,__libc_cond_catchall_stub)
__weak_alias(__libc_cond_timedwait,__libc_cond_timedwait_stub)
__weak_alias(__libc_cond_destroy,__libc_cond_catchall_stub)
__strong_alias(__libc_cond_signal_stub,__libc_cond_catchall_stub)
__strong_alias(__libc_cond_broadcast_stub,__libc_cond_catchall_stub)
-__strong_alias(__libc_cond_wait_stub,__libc_cond_catchall_stub)
__strong_alias(__libc_cond_destroy_stub,__libc_cond_catchall_stub)
int
Home |
Main Index |
Thread Index |
Old Index