]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 30 Oct 1998 18:18:59 +0000 (18:18 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 30 Oct 1998 18:18:59 +0000 (18:18 +0000)
1998-10-30 18:11  Ulrich Drepper  <drepper@cygnus.com>

* iconv/gconv_conf.c (__gconv_read_conf): Don't define as
internal_function since it is called through a pointer.
* iconv/gconv_db.c (free_derivation): Likewise.
* iconv/gconv_int.h: Adjust prototype od __gconv_read_conf.

* posix/wordexp.c: Add internal_function to parse_backtick definition.
* rt/aio_misc.c: Add internal_function to __aio_free_request,
__aio_find_req, __aio_find_req_fd, and __aio_enqueue_request
definitions.
* rt/aio_notify.c: Add internal_function to __aio_notify_only and
__aio_notify definitions.
* wcsmbsload.c: Add internal_function to __wcsmbs_load_conv definition.

ChangeLog
iconv/gconv_conf.c
iconv/gconv_db.c
iconv/gconv_int.h
posix/wordexp.c
rt/aio_misc.c
rt/aio_notify.c
wcsmbs/wcsmbsload.c

index e42d4b338898bc0f774341b7d7abb15a1cf95478..c55b452ca95526890d86f88dc8f878d32e236a09 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+1998-10-30 18:11  Ulrich Drepper  <drepper@cygnus.com>
+
+       * iconv/gconv_conf.c (__gconv_read_conf): Don't define as
+       internal_function since it is called through a pointer.
+       * iconv/gconv_db.c (free_derivation): Likewise.
+       * iconv/gconv_int.h: Adjust prototype od __gconv_read_conf.
+
+       * posix/wordexp.c: Add internal_function to parse_backtick definition.
+       * rt/aio_misc.c: Add internal_function to __aio_free_request,
+       __aio_find_req, __aio_find_req_fd, and __aio_enqueue_request
+       definitions.
+       * rt/aio_notify.c: Add internal_function to __aio_notify_only and
+       __aio_notify definitions.
+       * wcsmbsload.c: Add internal_function to __wcsmbs_load_conv definition.
+
 1998-10-30  Ulrich Drepper  <drepper@cygnus.com>
 
        * Makerules (build-shlib): Add -O to generate optimized shared
index 4ab924a3deba556a4de51e3faee9ef69f2c00278..1b0f5b81d480fee46fb7f4e67c14d1b7fe26b851 100644 (file)
@@ -381,7 +381,6 @@ read_conf_file (const char *filename, const char *directory, size_t dir_len,
 /* Read all configuration files found in the user-specified and the default
    path.  */
 void
-internal_function
 __gconv_read_conf (void)
 {
   const char *user_path = __secure_getenv ("GCONV_PATH");
index 443e5bf87810771369e83b805b145e1fa1d44481..be2b7fa233c0526147edbd0af08c8f764816c143 100644 (file)
@@ -147,7 +147,6 @@ add_derivation (const char *fromset, const char *toset,
 }
 
 static void
-internal_function
 free_derivation (void *p)
 {
   struct known_derivation *deriv = (struct known_derivation *) p;
index e4202f68ea0e52bc4a3bc6a8345ecce827543d23..f0239195c9330d0e9750d49bf0502be887865e93 100644 (file)
@@ -112,8 +112,7 @@ extern int __gconv_find_transform (const char *__toset, const char *__fromset,
      internal_function;
 
 /* Read all the configuration data and cache it.  */
-extern void __gconv_read_conf (void)
-     internal_function;
+extern void __gconv_read_conf (void);
 
 /* Comparison function to search alias.  */
 extern int __gconv_alias_compare (const void *__p1, const void *__p2);
index 4a377001e76ac95dbabdc7a998425298c71baeef..4a6dd7cbd048768ad32371cf552f463137c9ce1b 100644 (file)
@@ -1867,6 +1867,7 @@ parse_dollars (char **word, size_t *word_length, size_t *max_length,
 }
 
 static int
+internal_function
 parse_backtick (char **word, size_t *word_length, size_t *max_length,
                const char *words, size_t *offset, int flags,
                wordexp_t *pwordexp, const char *ifs, const char *ifs_white)
index 1688a154321cea632657f1cf9f2c7f9e894bf072..742a8abaf12708739436b17967a42176dc1edd6d 100644 (file)
@@ -144,6 +144,7 @@ get_elem (void)
 
 
 void
+internal_function
 __aio_free_request (struct requestlist *elem)
 {
   elem->running = no;
@@ -153,6 +154,7 @@ __aio_free_request (struct requestlist *elem)
 
 
 struct requestlist *
+internal_function
 __aio_find_req (aiocb_union *elem)
 {
   struct requestlist *runp = requests;
@@ -175,6 +177,7 @@ __aio_find_req (aiocb_union *elem)
 
 
 struct requestlist *
+internal_function
 __aio_find_req_fd (int fildes)
 {
   struct requestlist *runp = requests;
@@ -216,6 +219,7 @@ weak_alias (__aio_init, aio_init)
 /* The main function of the async I/O handling.  It enqueues requests
    and if necessary starts and handles threads.  */
 struct requestlist *
+internal_function
 __aio_enqueue_request (aiocb_union *aiocbp, int operation)
 {
   int result = 0;
index 716a304813f8d898d2bcc1cc62edb52e253f0819..8c57d72e9bc0a9d515ef0321a2399b0f9a401680 100644 (file)
@@ -24,6 +24,7 @@
 #include "aio_misc.h"
 
 int
+internal_function
 __aio_notify_only (struct sigevent *sigev)
 {
   int result = 0;
@@ -58,6 +59,7 @@ __aio_notify_only (struct sigevent *sigev)
 
 
 void
+internal_function
 __aio_notify (struct requestlist *req)
 {
   struct waitlist *waitlist;
index f2699b6107e27afcc690fb05af67f071b3f23800..a8412e3bf6c9f1897d8d1d99e6ff5c0e2bd551e9 100644 (file)
@@ -137,6 +137,7 @@ getfct (const char *to, const char *from)
 
 /* Load conversion functions for the currently selected locale.  */
 void
+internal_function
 __wcsmbs_load_conv (const struct locale_data *new_category)
 {
   /* We must modify global data.  */