* sysdeps/generic/sigpause.c: Define all functions as weak.
* sysdeps/posix/sigpause.c: Likewise.
2002-12-10 Ulrich Drepper <drepper@redhat.com>
- * sysdeps/posix/sigpause.c: Define all functions as weak.
+ * sysdeps/generic/sigpause.c: Define all functions as weak.
+ * sysdeps/posix/sigpause.c: Likewise.
* elf/tst-tls7.c (do_test): Adjustments for l_tls_modid being of
type size_t.
2002-12-10 Ulrich Drepper <drepper@redhat.com>
+ * init.c (__pthread_initialize_minimal): Remove unneccesary
+ sigaddset call.
+
* Makefile (tests): We can run tst-locale2 now.
2002-12-09 Ulrich Drepper <drepper@redhat.com>
libc_hidden_def (__sigpause)
int
+__attribute__ ((weak))
__default_sigpause (int mask)
{
__set_errno (ENOSYS);
int
-__xpg_sigpause (int sig)
+__attribute ((weak))
+__xpg___sigpause (int sig)
{
__set_errno (ENOSYS);
return -1;
standards demand it. The version which is a bit more reasonable is
the BSD version. So make this the default. */
int
+__attribute__ ((weak))
__default_sigpause (int mask)
{
return __sigpause (mask, 0);
standards demand it. The version which is a bit more reasonable is
the BSD version. So make this the default. */
int
+__attribute__ ((weak))
__xpg_sigpause (int sig)
{
return __sigpause (sig, 1);