Date: Mon, 25 May 2009 20:35:42 +0000 (UTC) From: Dmitry Chagin <dchagin@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org Subject: svn commit: r192770 - in stable/7/sys: . compat/linux contrib/pf dev/ath/ath_hal dev/cxgb Message-ID: <200905252035.n4PKZgb4034182@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dchagin Date: Mon May 25 20:35:41 2009 New Revision: 192770 URL: http://svn.freebsd.org/changeset/base/192770 Log: Merge r191880 from HEAD to stable/7: Change linux struct tms definition to match actual linux one. Approved by: kib (mentor) Modified: stable/7/sys/ (props changed) stable/7/sys/compat/linux/linux_misc.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/compat/linux/linux_misc.c ============================================================================== --- stable/7/sys/compat/linux/linux_misc.c Mon May 25 20:24:36 2009 (r192769) +++ stable/7/sys/compat/linux/linux_misc.c Mon May 25 20:35:41 2009 (r192770) @@ -655,10 +655,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 */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905252035.n4PKZgb4034182>