Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys u_int64_t --> uint64_t. No binary changes.



details:   https://anonhg.NetBSD.org/src/rev/15e08048da35
branches:  trunk
changeset: 933715:15e08048da35
user:      rin <rin%NetBSD.org@localhost>
date:      Fri May 29 05:29:23 2020 +0000

description:
u_int64_t --> uint64_t. No binary changes.

diffstat:

 sys/sys/timetc.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 00dad77c824f -r 15e08048da35 sys/sys/timetc.h
--- a/sys/sys/timetc.h  Fri May 29 03:09:14 2020 +0000
+++ b/sys/sys/timetc.h  Fri May 29 05:29:23 2020 +0000
@@ -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 @@
                 */
        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 @@
 
 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);



Home | Main Index | Thread Index | Old Index