diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-01-19 23:26:19 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-19 23:26:19 +0100 |
commit | 569df850cd7badd1e36132ad3b44aa76a4d27c25 (patch) | |
tree | 3a840d7b0ea28ffd3a542ffc6e4bfe1206b78d97 /kern/mach_clock.h | |
parent | 8d30c12342c1cafa7c02ecc00244f57cb39eb148 (diff) | |
download | gnumach-569df850cd7badd1e36132ad3b44aa76a4d27c25.tar.gz gnumach-569df850cd7badd1e36132ad3b44aa76a4d27c25.tar.bz2 gnumach-569df850cd7badd1e36132ad3b44aa76a4d27c25.zip |
Add host_get_time64 RPC to return the time as time_value64_t
Also updated the mapped time to support the new 64-bit time while
keeping compatible with the user land programs currently using it so
they can be migrated in parallel.
Diffstat (limited to 'kern/mach_clock.h')
-rw-r--r-- | kern/mach_clock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/mach_clock.h b/kern/mach_clock.h index 903492e6..2da311d1 100644 --- a/kern/mach_clock.h +++ b/kern/mach_clock.h @@ -98,7 +98,7 @@ extern void record_time_stamp (time_value_t *stamp); * Read a timestamp in STAMP into RESULT. Returns values in the * real-time clock frame. */ -extern void read_time_stamp (time_value_t *stamp, time_value_t *result); +extern void read_time_stamp (const time_value_t *stamp, time_value_t *result); extern kern_return_t host_get_time( host_t host, |