svn commit: trunk/uClibc/libc/sysdeps/linux/mips/bits

vapier at uclibc.org vapier at uclibc.org
Sun Feb 4 09:24:57 UTC 2007


Author: vapier
Date: 2007-02-04 01:24:56 -0800 (Sun, 04 Feb 2007)
New Revision: 17753

Log:
sync some stuff from glibc to fix test build failure

Modified:
   trunk/uClibc/libc/sysdeps/linux/mips/bits/stat.h


Changeset:
Modified: trunk/uClibc/libc/sysdeps/linux/mips/bits/stat.h
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/mips/bits/stat.h	2007-02-04 02:41:57 UTC (rev 17752)
+++ trunk/uClibc/libc/sysdeps/linux/mips/bits/stat.h	2007-02-04 09:24:56 UTC (rev 17753)
@@ -1,4 +1,5 @@
-/* Copyright (C) 1992,95,96,97,98,99,2000,2001 Free Software Foundation, Inc.
+/* Copyright (C) 1992, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004
+	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
@@ -35,7 +36,7 @@
 #define _MKNOD_VER		_MKNOD_VER_LINUX /* The bits defined below.  */
 
 
-#if _MIPS_SIM == _MIPS_SIM_ABI32
+#if _MIPS_SIM == _ABIO32
 /* Structure describing file characteristics.  */
 struct stat
   {
@@ -65,11 +66,11 @@
      * st_ctime but we don't have it under Linux.
      */
     __time_t st_atime;		/* Time of last access.  */
-    long int __reserved0;
+    unsigned long int st_atimensec;	/* Nscecs of last access.  */
     __time_t st_mtime;		/* Time of last modification.  */
-    long int __reserved1;
+    unsigned long int st_mtimensec;	/* Nsecs of last modification.  */
     __time_t st_ctime;		/* Time of last status change.  */
-    long int __reserved2;
+    unsigned long int st_ctimensec;	/* Nsecs of last status change.  */
     __blksize_t st_blksize;	/* Optimal block size for I/O.  */
 #ifndef __USE_FILE_OFFSET64
     __blkcnt_t st_blocks;	/* Number of 512-byte blocks allocated.  */
@@ -110,7 +111,7 @@
 #endif /* N32 || N64 */
 
 #ifdef __USE_LARGEFILE64
-#if _MIPS_SIM == _MIPS_SIM_ABI32
+#if _MIPS_SIM == _ABIO32
 struct stat64
   {
     __dev_t st_dev;




More information about the uClibc-cvs mailing list