svn commit: r242516 - stable/9/sys/kern
Davide Italiano
davide at FreeBSD.org
Sat Nov 3 16:06:15 UTC 2012
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
More information about the svn-src-stable-9
mailing list