2000-11-20  Hiroyuki Machida  <machida@sm.sony.co.jp>

	* sysdeps/unix/sysv/linux/mips/clone.S:  Fix comments.

	* sysdeps/unix/sysv/linux/mips/kernel_stat.h (kernel_stat): Expand
	time_t to 'long int' not, 'unsigned int'.  Use 'long int' for
	__unused? members.

	* sysdeps/unix/sysv/linux/mips/bits/fcntl.h (O_NOFOLLOW): Use same
	value defined in /usr/include/asm-mips/fcntl.h.
This commit is contained in:
Andreas Jaeger 2000-11-20 07:55:44 +00:00
parent c45c8be68d
commit 73ea3b1bae
3 changed files with 18 additions and 7 deletions

View File

@ -1,3 +1,14 @@
2000-11-20 Hiroyuki Machida <machida@sm.sony.co.jp>
* sysdeps/unix/sysv/linux/mips/clone.S: Fix comments.
* sysdeps/unix/sysv/linux/mips/kernel_stat.h (kernel_stat): Expand
time_t to 'long int' not, 'unsigned int'. Use 'long int' for
__unused? members.
* sysdeps/unix/sysv/linux/mips/bits/fcntl.h (O_NOFOLLOW): Use same
value defined in /usr/include/asm-mips/fcntl.h.
2000-11-18 Ulrich Drepper <drepper@redhat.com> 2000-11-18 Ulrich Drepper <drepper@redhat.com>
* stdio-common/Makefile (tests): Add test-vfprintf. * stdio-common/Makefile (tests): Add test-vfprintf.

View File

@ -45,7 +45,7 @@
#endif #endif
#ifdef __USE_GNU #ifdef __USE_GNU
# define O_NOFOLLOW 0x4000 /* Do not follow links. */ # define O_NOFOLLOW 0x20000 /* Do not follow links. */
# define O_DIRECT 0x8000 /* Direct disk access hint. */ # define O_DIRECT 0x8000 /* Direct disk access hint. */
# define O_DIRECTORY 0x10000 /* Must be a directory. */ # define O_DIRECTORY 0x10000 /* Must be a directory. */
#endif #endif

View File

@ -12,12 +12,12 @@ struct kernel_stat
long int __pad2[2]; long int __pad2[2];
long int st_size; long int st_size;
long int __pad3; long int __pad3;
unsigned int st_atime; long int st_atime;
unsigned int __unused1; long int __unused1;
unsigned int st_mtime; long int st_mtime;
unsigned int __unused2; long int __unused2;
unsigned int st_ctime; long int st_ctime;
unsigned int __unused3; long int __unused3;
long int st_blksize; long int st_blksize;
long int st_blocks; long int st_blocks;
char st_fstype[16]; /* Filesystem type name, unsupported */ char st_fstype[16]; /* Filesystem type name, unsupported */