summaryrefslogtreecommitdiff
path: root/posix
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-01-25 09:33:04 +0000
committerUlrich Drepper <drepper@redhat.com>2001-01-25 09:33:04 +0000
commit7287c36dd8896ba1ddf72b0e5dc4b7baebee1b60 (patch)
tree9f25c731907fd0e482968d4ed9f93b9283c2ae4f /posix
parent49833554e36f76cb29991d1ca8bca5ae3669ce20 (diff)
Update.
* conform/conformtest.pl: Run Unix tests for XPG6. Implement handling of known namespace violations. Improve printing of results. * posix/unistd.h (usleep): Correct return type. * sysdeps/unix/sysv/linux/usleep.c: Correct return type. * sysdeps/unix/bsd/usleep.c: Correct return type. * sysdeps/mach/usleep.c: Correct return type. * sysdeps/generic/usleep.c: Correct return type. * posix/unistd.h (sync): Correct return type. * sysdeps/generic/sync.c: Likewise. * sysdeps/mach/hurd/sync.c: Likewise. * sysdeps/generic/bits/confname.h (_SC_IOV_MAX): New definition.
Diffstat (limited to 'posix')
-rw-r--r--posix/unistd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/posix/unistd.h b/posix/unistd.h
index 7ae40b2ca5..e72553dc0d 100644
--- a/posix/unistd.h
+++ b/posix/unistd.h
@@ -380,7 +380,7 @@ extern __useconds_t ualarm (__useconds_t __value, __useconds_t __interval)
/* Sleep USECONDS microseconds, or until a signal arrives that is not blocked
or ignored. */
-extern void usleep (__useconds_t __useconds) __THROW;
+extern int usleep (__useconds_t __useconds) __THROW;
#endif
@@ -704,7 +704,7 @@ extern int tcsetpgrp (int __fd, __pid_t __pgrp_id) __THROW;
/* Return the login name of the user. */
extern char *getlogin (void) __THROW;
-#ifdef __USE_REENTRANT
+#if defined __USE_REENTRANT || defined __USE_UNIX98
/* Return at most NAME_LEN characters of the login name of the user in NAME.
If it cannot be determined or some other error occurred, return the error
code. Otherwise return 0. */
@@ -805,7 +805,7 @@ extern int daemon (int __nochdir, int __noclose) __THROW;
extern long int gethostid (void) __THROW;
/* Make all changes done to all files actually appear on disk. */
-extern int sync (void) __THROW;
+extern void sync (void) __THROW;
/* Return the number of bytes in a page. This is the system's page size,