* include/sys/resource.h: Use libc_hidden_proto for getpriority,
authorRoland McGrath <roland@gnu.org>
Sun, 4 Aug 2002 03:50:21 +0000 (03:50 +0000)
committerRoland McGrath <roland@gnu.org>
Sun, 4 Aug 2002 03:50:21 +0000 (03:50 +0000)
setpriority.
* sysdeps/unix/sysv/linux/getpriority.c: Add libc_hidden_def.
* sysdeps/unix/sysv/irix4/getpriority.c: Likewise.
* sysdeps/mach/hurd/setpriority.c: Likewise.
* sysdeps/mach/hurd/getpriority.c: Likewise.
* sysdeps/generic/setpriority.c: Likewise.
* sysdeps/generic/getpriority.c: Likewise.

* include/mcheck.h: Use libc_hidden_proto for mcheck_check_all.
* malloc/mcheck.c: Add libc_hidden_def.

* include/search.h: Use libc_hidden_proto for hcreate_r, hdestroy_r.
* misc/hsearch_r.c: Add libc_hidden_def.

* include/fnmatch.h: Use libc_hidden_proto for fnmatch.
* posix/fnmatch.c: Add libc_hidden_weak.

15 files changed:
ChangeLog
include/fnmatch.h
include/mcheck.h
include/search.h
include/sys/resource.h
linuxthreads/ChangeLog
malloc/mcheck.c
misc/hsearch_r.c
posix/fnmatch.c
sysdeps/generic/getpriority.c
sysdeps/generic/setpriority.c
sysdeps/mach/hurd/getpriority.c
sysdeps/mach/hurd/setpriority.c
sysdeps/unix/sysv/irix4/getpriority.c
sysdeps/unix/sysv/linux/getpriority.c

index 4153a6a..50b3619 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,23 @@
 2002-08-03  Roland McGrath  <roland@redhat.com>
 
+       * include/sys/resource.h: Use libc_hidden_proto for getpriority,
+       setpriority.
+       * sysdeps/unix/sysv/linux/getpriority.c: Add libc_hidden_def.
+       * sysdeps/unix/sysv/irix4/getpriority.c: Likewise.
+       * sysdeps/mach/hurd/setpriority.c: Likewise.
+       * sysdeps/mach/hurd/getpriority.c: Likewise.
+       * sysdeps/generic/setpriority.c: Likewise.
+       * sysdeps/generic/getpriority.c: Likewise.
+
+       * include/mcheck.h: Use libc_hidden_proto for mcheck_check_all.
+       * malloc/mcheck.c: Add libc_hidden_def.
+
+       * include/search.h: Use libc_hidden_proto for hcreate_r, hdestroy_r.
+       * misc/hsearch_r.c: Add libc_hidden_def.
+
+       * include/fnmatch.h: Use libc_hidden_proto for fnmatch.
+       * posix/fnmatch.c: Add libc_hidden_weak.
+
        * include/unistd.h: Use libc_hidden_proto for _exit, alarm, confstr,
        execl, execle, execlp, execvp, getpid, getsid.
        * sysdeps/generic/alarm.c: Add libc_hidden_def.
index b12b786..2cdad0a 100644 (file)
@@ -1 +1,7 @@
+#ifndef _FNMATCH_H
+
 #include <posix/fnmatch.h>
+
+libc_hidden_proto (fnmatch)
+
+#endif
index aa91d87..b0037a7 100644 (file)
@@ -3,5 +3,6 @@
 #include <malloc/mcheck.h>
 
 libc_hidden_proto (mcheck)
+libc_hidden_proto (mcheck_check_all)
 
 #endif
index 60bb59a..e82f028 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef _SEARCH_H
 #include <misc/search.h>
 
+libc_hidden_proto (hcreate_r)
+libc_hidden_proto (hdestroy_r)
 libc_hidden_proto (hsearch_r)
 libc_hidden_proto (lfind)
 
index 8877b35..f9b819d 100644 (file)
@@ -1,6 +1,9 @@
 #ifndef _SYS_RESOURCE_H
 #include <resource/sys/resource.h>
 
+libc_hidden_proto (getpriority)
+libc_hidden_proto (setpriority)
+
 /* Now define the internal interfaces.  */
 extern int __getrlimit (enum __rlimit_resource __resource,
                        struct rlimit *__rlimits);
index 95b2b91..2ff9fa7 100644 (file)
@@ -1,9 +1,12 @@
-2002-08-03  Ulrich Drepper  <drepper@redhat.com>
-
-       * sysdeps/pthread/bits/libc-tsd.h: Add _LIBC_TSD_KEY_LOCALE.
-
 2002-08-02  Roland McGrath  <roland@redhat.com>
 
+       * sysdeps/pthread/bits/libc-tsd.h (enum __libc_tsd_key_t):
+       Add _LIBC_TSD_KEY_LOCALE.
+       * manager.c (pthread_start_thread) [!(USE_TLS && HAVE___THREAD)]:
+       Call __uselocale to initialize our per-thread locale pointer to
+       the global one.
+       * pthread.c (__pthread_initialize_minimal): Likewise.
+
        * sysdeps/i386/tls.h (TLS_DO_SET_THREAD_AREA): Add missing \s.
 
 2002-08-02  Ulrich Drepper  <drepper@redhat.com>
index 9d9200d..c67636c 100644 (file)
@@ -133,6 +133,9 @@ mcheck_check_all ()
   /* Turn checks on again.  */
   pedantic = 1;
 }
+#ifdef _LIBC
+libc_hidden_def (mcheck_check_all)
+#endif
 
 static void unlink_blk __P ((struct hdr *ptr));
 static void
index d7c604c..398f0b6 100644 (file)
@@ -94,6 +94,7 @@ hcreate_r (nel, htab)
   /* everything went alright */
   return 1;
 }
+libc_hidden_def (hcreate_r)
 
 
 /* After using the hash table it has to be destroyed. The used memory can
@@ -116,6 +117,7 @@ hdestroy_r (htab)
   /* the sign for an existing table is an value != NULL in htable */
   htab->table = NULL;
 }
+libc_hidden_def (hdestroy_r)
 
 
 /* This is the search function. It uses double hashing with open addressing.
index 321f287..b677e4b 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-1993,1996-1999,2000,2001 Free Software Foundation, Inc.
+/* Copyright (C) 1991-93,96-99,2000,01,02 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -369,6 +369,7 @@ versioned_symbol (libc, __fnmatch, fnmatch, GLIBC_2_2_3);
 strong_alias (__fnmatch, __fnmatch_old)
 compat_symbol (libc, __fnmatch_old, fnmatch, GLIBC_2_0);
 #  endif
+libc_hidden_ver (__fnmatch, fnmatch)
 # endif
 
 #endif /* _LIBC or not __GNU_LIBRARY__.  */
index 1ea8e25..501c92a 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1995, 1996, 1997, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1991,95,96,97,2000,02 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -31,6 +31,7 @@ getpriority (which, who)
   __set_errno (ENOSYS);
   return -1;
 }
+libc_hidden_def (getpriority)
 
 stub_warning (getpriority)
 #include <stub-tag.h>
index ca18389..b2e6f8a 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1995, 1996, 1997, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1991,95,96,97,2000,02 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -30,6 +30,7 @@ setpriority (which, who, prio)
   __set_errno (ENOSYS);
   return -1;
 }
+libc_hidden_def (setpriority)
 
 stub_warning (setpriority)
 #include <stub-tag.h>
index 9fede4d..8f7c3c6 100644 (file)
@@ -82,3 +82,4 @@ getpriority (enum __priority_which which, id_t who)
 
   return MACH_PRIORITY_TO_NICE (maxpri);
 }
+libc_hidden_def (getpriority)
index ab713bd..bf739aa 100644 (file)
@@ -95,3 +95,4 @@ setpriority (enum __priority_which which, id_t who, int prio)
 
   return err ? __hurd_fail (err) : 0;
 }
+libc_hidden_def (setpriority)
index 9fc2be9..baf945e 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1994, 1996, 1997, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1994,96,97,2000,02 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -44,3 +44,4 @@ getpriority (which, who)
   __set_errno (EINVAL);
   return -1;
 }
+libc_hidden_def (getpriority)
index 809f0c1..56796ed 100644 (file)
@@ -1,5 +1,5 @@
 /* getpriority for Linux.
-   Copyright (C) 1996, 1998, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1996,98,2000,02 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -44,3 +44,4 @@ getpriority (enum __priority_which which, id_t who)
     res = PZERO - res;
   return res;
 }
+libc_hidden_def (getpriority)