svn commit: r191880 - head/sys/compat/linux

Dmitry Chagin dchagin at FreeBSD.org
Thu May 7 12:55:59 UTC 2009


Author: dchagin
Date: Thu May  7 12:55:58 2009
New Revision: 191880
URL: http://svn.freebsd.org/changeset/base/191880

Log:
  Change linux struct tms definition to match actual linux one.
  
  Approved by:	kib (mentor)
  MFC after:	2 weeks

Modified:
  head/sys/compat/linux/linux_misc.c

Modified: head/sys/compat/linux/linux_misc.c
==============================================================================
--- head/sys/compat/linux/linux_misc.c	Thu May  7 11:47:51 2009	(r191879)
+++ head/sys/compat/linux/linux_misc.c	Thu May  7 12:55:58 2009	(r191880)
@@ -653,10 +653,10 @@ linux_time(struct thread *td, struct lin
 }
 
 struct l_times_argv {
-	l_long	tms_utime;
-	l_long	tms_stime;
-	l_long	tms_cutime;
-	l_long	tms_cstime;
+	l_clock_t	tms_utime;
+	l_clock_t	tms_stime;
+	l_clock_t	tms_cutime;
+	l_clock_t	tms_cstime;
 };
 
 #define CLK_TCK 100			/* Linux uses 100 */


More information about the svn-src-head mailing list