svn commit: r229488 - in stable/8/sys: compat/freebsd32 conf

Sergey Kandaurov pluknet at FreeBSD.org
Wed Jan 4 14:34:46 UTC 2012


Author: pluknet
Date: Wed Jan  4 14:34:45 2012
New Revision: 229488
URL: http://svn.freebsd.org/changeset/base/229488

Log:
  MFC r227447:
  
   struct timespec32: change types of tv_sec and tv_nsec fields to signed
   to match native struct timespec ABI on __LP32__.

Modified:
  stable/8/sys/compat/freebsd32/freebsd32.h
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/conf/ldscript.mips.octeon1.32   (props changed)
  stable/8/sys/conf/ldscript.mips.octeon1.64   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/compat/freebsd32/freebsd32.h
==============================================================================
--- stable/8/sys/compat/freebsd32/freebsd32.h	Wed Jan  4 14:33:54 2012	(r229487)
+++ stable/8/sys/compat/freebsd32/freebsd32.h	Wed Jan  4 14:34:45 2012	(r229488)
@@ -52,8 +52,8 @@ struct timeval32 {
 } while (0)
 
 struct timespec32 {
-	u_int32_t tv_sec;
-	u_int32_t tv_nsec;
+	int32_t tv_sec;
+	int32_t tv_nsec;
 };
 #define TS_CP(src,dst,fld) do {			\
 	CP((src).fld,(dst).fld,tv_sec);		\


More information about the svn-src-stable-8 mailing list