Module Name: src Committed By: rin Date: Fri May 29 05:29:24 UTC 2020
Modified Files: src/sys/sys: timetc.h Log Message: u_int64_t --> uint64_t. No binary changes. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/sys/timetc.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/sys/timetc.h diff -u src/sys/sys/timetc.h:1.7 src/sys/sys/timetc.h:1.8 --- src/sys/sys/timetc.h:1.7 Sat Oct 6 13:03:55 2018 +++ src/sys/sys/timetc.h Fri May 29 05:29:23 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: timetc.h,v 1.7 2018/10/06 13:03:55 maya Exp $ */ +/* $NetBSD: timetc.h,v 1.8 2020/05/29 05:29:23 rin Exp $ */ /*- * ---------------------------------------------------------------------------- @@ -60,7 +60,7 @@ struct timecounter { */ u_int tc_counter_mask; /* This mask should mask off any unimplemented bits. */ - u_int64_t tc_frequency; + uint64_t tc_frequency; /* Frequency of the counter in Hz. */ const char *tc_name; /* Name of the timecounter. */ @@ -79,7 +79,7 @@ struct timecounter { extern struct timecounter *timecounter; -u_int64_t tc_getfrequency(void); +uint64_t tc_getfrequency(void); void tc_init(struct timecounter *tc); int tc_detach(struct timecounter *); void tc_setclock(const struct timespec *ts);