]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorAndreas Jaeger <aj@suse.de>
Tue, 6 Feb 2001 18:27:57 +0000 (18:27 +0000)
committerAndreas Jaeger <aj@suse.de>
Tue, 6 Feb 2001 18:27:57 +0000 (18:27 +0000)
2001-02-06  Andreas Jaeger  <aj@suse.de>

* include/pthread.h: New file.

* wctype/wctype.h: Move internal interfaces from here to...
* include/wctype.h: ...here.

* wcsmbs/wchar.h: Move __wcslen from here to...
* include/wchar.h: ...here.

* posix/sys/wait.h: Move __wait from here to...
* include/sys/wait.h: ...here.

* string/string.h: Move __ffs and __strerror_r from here to...
* include/string.h: ...here.

* stdlib/stdlib.h: Move __on_exit from here to...
* include/stdlib.h: ...here.

* libio/stdio.h: Move __vsnprintf from here to...
* include/stdio.h: ...here.

14 files changed:
ChangeLog
include/pthread.h [new file with mode: 0644]
include/stdio.h
include/stdlib.h
include/string.h
include/sys/wait.h
include/wchar.h
include/wctype.h
libio/stdio.h
posix/sys/wait.h
stdlib/stdlib.h
string/string.h
wcsmbs/wchar.h
wctype/wctype.h

index 610e99b41b8637a3b2dd6f499f230ddaeb0dc3e9..eabf4a6e3904a5a5756da722f150bcf3d7753891 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,25 @@
+2001-02-06  Andreas Jaeger  <aj@suse.de>
+
+       * include/pthread.h: New file.
+
+       * wctype/wctype.h: Move internal interfaces from here to...
+       * include/wctype.h: ...here.
+
+       * wcsmbs/wchar.h: Move __wcslen from here to...
+       * include/wchar.h: ...here.
+
+       * posix/sys/wait.h: Move __wait from here to...
+       * include/sys/wait.h: ...here.
+
+       * string/string.h: Move __ffs and __strerror_r from here to...
+       * include/string.h: ...here.
+
+       * stdlib/stdlib.h: Move __on_exit from here to...
+       * include/stdlib.h: ...here.
+
+       * libio/stdio.h: Move __vsnprintf from here to...
+       * include/stdio.h: ...here.
+
 2001-02-06  Andreas Schwab  <schwab@suse.de>
 
        * sysdeps/unix/sysv/linux/ia64/ioperm.c: Don't include kernel
diff --git a/include/pthread.h b/include/pthread.h
new file mode 100644 (file)
index 0000000..fb37db1
--- /dev/null
@@ -0,0 +1,6 @@
+#include_next <pthread.h>
+
+/* This function is called to initialize the pthread library.  */
+extern void __pthread_initialize (void) __attribute__ ((weak));
+
+extern void __pthread_initialize_minimal (void) __attribute__ ((weak));
index 4fe3bb03eb4fd56fe12e5559b8c6e0fe42690723..76191081185decca1c163b7b1072862f42c24797 100644 (file)
@@ -14,6 +14,9 @@ extern int __fcloseall (void);
 extern int __snprintf (char *__restrict __s, size_t __maxlen,
                       __const char *__restrict __format, ...)
      __attribute__ ((__format__ (__printf__, 3, 4)));
+extern int __vsnprintf (char *__restrict __s, size_t __maxlen,
+                       __const char *__restrict __format, _G_va_list __arg)
+     __attribute__ ((__format__ (__printf__, 3, 0)));
 extern int __vfscanf (FILE *__restrict __s,
                      __const char *__restrict __format,
                      _G_va_list __arg)
index 12fce40f9b937f3a76f62096a1d40fb8c195fbd0..675ed768c6bc09ad6a3e1574d7f1a654eb218ba2 100644 (file)
@@ -54,6 +54,8 @@ extern int __add_to_environ (const char *name, const char *value,
 extern void _quicksort (void *const pbase, size_t total_elems,
                        size_t size, __compar_fn_t cmp);
 
+extern int __on_exit (void (*__func) (int __status, void *__arg), void *__arg);
+
 extern int __cxa_atexit (void (*func) (void *), void *arg, void *d);
 
 extern void __cxa_finalize (void *d);
index d27a8ebfa23503f3ec8d8f25d82e5926f7a496c3..7d268ecfb1732fab650a608c35390eb6902e31e6 100644 (file)
@@ -39,7 +39,11 @@ extern void *__memrchr (__const void *__s, int __c, size_t __n)
 
 extern void *__memchr (__const void *__s, int __c, size_t __n)
      __attribute_pure__;
-     
+
+extern int __ffs (int __i) __attribute__ ((const));
+
+extern char *__strerror_r (int __errnum, char *__buf, size_t __buflen);
+
 /* Now the real definitions.  We do this here since some of the functions
    above are defined as macros in the headers.  */
 #include <string/string.h>
index 37873dfbfea5b50c7209a6ffee5595cdf61b7a0e..ebaa199bba19f6d812c199cc115d578c5e13c2fe 100644 (file)
@@ -6,6 +6,7 @@ extern __pid_t __waitpid (__pid_t __pid, int *__stat_loc,
                          int __options);
 extern __pid_t __libc_waitpid (pid_t __pid, int *__stat_loc, int __options);
 extern __pid_t __libc_wait (int *__stat_loc);
+extern __pid_t __wait (__WAIT_STATUS __stat_loc);
 extern __pid_t __wait3 (__WAIT_STATUS __stat_loc,
                        int __options, struct rusage * __usage);
 extern __pid_t __wait4 (__pid_t __pid, __WAIT_STATUS __stat_loc,
index c6cc9cb1a384629ac8235481ad946566d5614ebe..6f580b43fc1147d161efabd9bf4a7991c4d2ef7c 100644 (file)
@@ -8,6 +8,7 @@ extern int __wcscasecmp (__const wchar_t *__s1, __const wchar_t *__s2)
 extern int __wcsncasecmp (__const wchar_t *__s1, __const wchar_t *__s2,
                          size_t __n)
      __attribute_pure__;
+extern size_t __wcslen (__const wchar_t *__s) __attribute_pure__;
 extern size_t __wcsnlen (__const wchar_t *__s, size_t __maxlen)
      __attribute_pure__;
 extern wint_t __btowc (int __c);
index f1a00f881e330f993c823330a50e91e91b8aa7c4..2a944915a53d9d0bc33f43e4ebcde15dca857b4a 100644 (file)
@@ -2,6 +2,11 @@
 
 #include <wctype/wctype.h>
 
+/* Internal interfaces.  */
 extern int __iswspace (wint_t __wc);
+extern int __iswctype (wint_t __wc, wctype_t __desc);
+extern wctype_t __wctype (__const char *__property);
+extern wint_t __towctrans (wint_t __wc, wctrans_t __desc);
+
 
 #endif
index 4c8cea62dcf2fffde126ec0cec020d29086fa8e4..7f10fe5292c8b25b7129e3a92c7ded762f990fc4 100644 (file)
@@ -293,9 +293,6 @@ extern int snprintf (char *__restrict __s, size_t __maxlen,
                     __const char *__restrict __format, ...)
      __THROW __attribute__ ((__format__ (__printf__, 3, 4)));
 
-extern int __vsnprintf (char *__restrict __s, size_t __maxlen,
-                       __const char *__restrict __format, _G_va_list __arg)
-     __THROW __attribute__ ((__format__ (__printf__, 3, 0)));
 extern int vsnprintf (char *__restrict __s, size_t __maxlen,
                      __const char *__restrict __format, _G_va_list __arg)
      __THROW __attribute__ ((__format__ (__printf__, 3, 0)));
index 1f43f77d07ce8ee4cbf7673dd43c227c30ca4206..226bab13a349b62aabe72d45ea54087b90c08a9f 100644 (file)
@@ -106,7 +106,6 @@ typedef enum
 
 /* Wait for a child to die.  When one does, put its status in *STAT_LOC
    and return its process ID.  For errors, return (pid_t) -1.  */
-extern __pid_t __wait (__WAIT_STATUS __stat_loc) __THROW;
 extern __pid_t wait (__WAIT_STATUS __stat_loc) __THROW;
 
 #ifdef __USE_BSD
index 9b5d1875586810c847fc557e98ffb7071161ada4..5d410af71281d30b6848c0fa8abb662086b98783 100644 (file)
@@ -568,8 +568,6 @@ extern int atexit (void (*__func) (void)) __THROW;
 #ifdef __USE_MISC
 /* Register a function to be called with the status
    given to `exit' and the given argument.  */
-extern int __on_exit (void (*__func) (int __status, void *__arg), void *__arg)
-     __THROW;
 extern int on_exit (void (*__func) (int __status, void *__arg), void *__arg)
      __THROW;
 #endif
index 3491170ab56e9db1337c3911b3b936f5009dc47a..6aee6e12eabda37cfae58234759df2e2c894bc49 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991,92,93,95,96,97,98,99, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1991,92,93,95,96,97,98,99,2000,2001 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
@@ -230,7 +230,6 @@ extern char *strerror (int __errnum) __THROW;
 #ifdef __USE_MISC
 /* Reentrant version of `strerror'.  If a temporary buffer is required, at
    most BUFLEN bytes of BUF will be used.  */
-extern char *__strerror_r (int __errnum, char *__buf, size_t __buflen) __THROW;
 extern char *strerror_r (int __errnum, char *__buf, size_t __buflen) __THROW;
 #endif
 
@@ -257,7 +256,6 @@ extern char *rindex (__const char *__s, int __c) __THROW __attribute_pure__;
 
 /* Return the position of the first bit set in I, or 0 if none are set.
    The least-significant bit is position 1, the most-significant 32.  */
-extern int __ffs (int __i) __THROW __attribute__ ((const));
 extern int ffs (int __i) __THROW __attribute__ ((const));
 
 /* The following two functions are non-standard but necessary for non-32 bit
index 0c0d8a027236fbf9e4e8dd124ab4534b29b9bf52..aa2d1955bce545470ee79ec6383cac3d55467f1f 100644 (file)
@@ -217,7 +217,6 @@ extern wchar_t *wcstok (wchar_t *__restrict __s,
                        wchar_t **__restrict __ptr) __THROW;
 
 /* Return the number of wide characters in S.  */
-extern size_t __wcslen (__const wchar_t *__s) __THROW __attribute_pure__;
 extern size_t wcslen (__const wchar_t *__s) __THROW __attribute_pure__;
 
 #ifdef __USE_GNU
index a89eae069d7ff6c1c8c6afc19fe5a929fa1ddfac..0ef675c0f93a26271a82c1413080a9d939a91903 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1996,1997,1998,1999,2000,2001 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
@@ -175,12 +175,10 @@ extern int iswblank (wint_t __wc) __THROW;
 
 /* Construct value that describes a class of wide characters identified
    by the string argument PROPERTY.  */
-extern wctype_t __wctype (__const char *__property) __THROW;
 extern wctype_t wctype (__const char *__property) __THROW;
 
 /* Determine whether the wide-character WC has the property described by
    DESC.  */
-extern int __iswctype (wint_t __wc, wctype_t __desc) __THROW;
 extern int iswctype (wint_t __wc, wctype_t __desc) __THROW;
 
 #if __GNUC__ >= 2 && defined __OPTIMIZE__
@@ -256,9 +254,6 @@ extern wint_t towlower (wint_t __wc) __THROW;
 /* Converts an lowercase letter to the corresponding uppercase letter.  */
 extern wint_t towupper (wint_t __wc) __THROW;
 
-/* Map the wide character WC using the mapping described by DESC.  */
-extern wint_t __towctrans (wint_t __wc, wctrans_t __desc) __THROW;
-
 #if __GNUC__ >= 2 && defined __OPTIMIZE__
 /* The tables are always organized in a way which allows direct access
    for single byte characters.  */