mirror of git://sourceware.org/git/glibc.git
* sysdeps/generic/bits/ustat.h: Comment fix.
* io/sys/sendfile.h: Comment fix. * sysdeps/posix/pread.c: Comment fix. * sysdeps/posix/pread64.c: Comment fix. * sysdeps/posix/pwrite.c: Comment fix. * sysdeps/posix/pwrite64.c: Comment fix.
This commit is contained in:
parent
131c6eb7da
commit
4f58b7c6f7
|
|
@ -1,3 +1,12 @@
|
||||||
|
2002-09-04 Bruno Haible <bruno@clisp.org>
|
||||||
|
|
||||||
|
* sysdeps/generic/bits/ustat.h: Comment fix.
|
||||||
|
* io/sys/sendfile.h: Comment fix.
|
||||||
|
* sysdeps/posix/pread.c: Comment fix.
|
||||||
|
* sysdeps/posix/pread64.c: Comment fix.
|
||||||
|
* sysdeps/posix/pwrite.c: Comment fix.
|
||||||
|
* sysdeps/posix/pwrite64.c: Comment fix.
|
||||||
|
|
||||||
2002-09-06 Roland McGrath <roland@redhat.com>
|
2002-09-06 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
* posix/sys/utsname.h (_UTSNAME_SYSNAME_LENGTH): New macro, defined
|
* posix/sys/utsname.h (_UTSNAME_SYSNAME_LENGTH): New macro, defined
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,8 @@
|
||||||
2002-09-04 Bruno Haible <bruno@clisp.org>
|
2002-09-04 Bruno Haible <bruno@clisp.org>
|
||||||
|
|
||||||
|
* sysdeps/alpha/pt-machine.h: Choose different include file location
|
||||||
|
on non-Linux platforms.
|
||||||
|
|
||||||
* wrapsyscall.c (PROMOTE_INTEGRAL_TYPE): New macro.
|
* wrapsyscall.c (PROMOTE_INTEGRAL_TYPE): New macro.
|
||||||
(open, open64): Change va_arg argument type to the integral type to
|
(open, open64): Change va_arg argument type to the integral type to
|
||||||
which mode_t promotes.
|
which mode_t promotes.
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,11 @@
|
||||||
# define PT_EI extern inline
|
# define PT_EI extern inline
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <asm/pal.h>
|
#ifdef __linux__
|
||||||
|
# include <asm/pal.h>
|
||||||
|
#else
|
||||||
|
# include <machine/pal.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
extern long int testandset (int *spinlock);
|
extern long int testandset (int *spinlock);
|
||||||
extern int __compare_and_swap (long int *p, long int oldval, long int newval);
|
extern int __compare_and_swap (long int *p, long int oldval, long int newval);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue