]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Thu, 4 Sep 2003 16:19:05 +0000 (16:19 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 4 Sep 2003 16:19:05 +0000 (16:19 +0000)
* posix/unistd.h: Add back __THROW to sysconf, pathconf, fpathconf.

over the place.  It would be allowed to have these functions as

ChangeLog
posix/unistd.h

index bc25c68f443e57a988c32d4d82bf1396f5ddbf29..13f55eec690088d8e4dddfd2b0e60f7f6f2dcc56 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2003-09-04  Ulrich Drepper  <drepper@redhat.com>
 
+       * posix/unistd.h: Add back __THROW to sysconf, pathconf, fpathconf.
+
        * sysdeps/unix/sysv/linux/pathconf.c (__statfs_filesize_max):
        Report correct value for vxfs.
        * sysdeps/unix/sysv/linux/linux_fsinfo.h: Dfeine VXFS_SUPER_MAGIC.
@@ -8,7 +10,7 @@
        data.
 
        * sysdeps/generic/utmp_file.c: Use not-cancelable syscalls all
-       over the place.  It would be allowed to have these fucntions as
+       over the place.  It would be allowed to have these functions as
        cancellation points but the cleanup would be ugly and a lot of
        work.
 
index 15a75fa8a075926cba8648612fdff5e2dfd49b6b..13569ae72749b8574080d149d1d5a9896dd3be62 100644 (file)
@@ -525,13 +525,13 @@ extern void _exit (int __status) __attribute__ ((__noreturn__));
 #include <bits/confname.h>
 
 /* Get file-specific configuration information about PATH.  */
-extern long int pathconf (__const char *__path, int __name);
+extern long int pathconf (__const char *__path, int __name) __THROW;
 
 /* Get file-specific configuration about descriptor FD.  */
-extern long int fpathconf (int __fd, int __name);
+extern long int fpathconf (int __fd, int __name) __THROW;
 
 /* Get the value of the system variable NAME.  */
-extern long int sysconf (int __name) __attribute__ ((__const__));
+extern long int sysconf (int __name) __THROW __attribute__ ((__const__));
 
 #ifdef __USE_POSIX2
 /* Get the value of the string-valued system variable NAME.  */
This page took 0.056964 seconds and 5 git commands to generate.