Author: davide Date: Sat Nov 3 16:06:14 2012 New Revision: 242516 URL: http://svn.freebsd.org/changeset/base/242516
Log: MFC r242202: The fields of struct timespec32 should be int32_t and not uint32_t. Make this change. Modified: stable/9/sys/kern/kern_umtx.c Directory Properties: stable/9/sys/ (props changed) Modified: stable/9/sys/kern/kern_umtx.c ============================================================================== --- stable/9/sys/kern/kern_umtx.c Sat Nov 3 15:57:37 2012 (r242515) +++ stable/9/sys/kern/kern_umtx.c Sat Nov 3 16:06:14 2012 (r242516) @@ -3364,8 +3364,8 @@ freebsd32_umtx_unlock(struct thread *td, } struct timespec32 { - uint32_t tv_sec; - uint32_t tv_nsec; + int32_t tv_sec; + int32_t tv_nsec; }; static inline int _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"