VirtualBox

source: vbox/trunk/include/iprt/time.h@ 1890

Last change on this file since 1890 was 1, checked in by vboxsync, 55 years ago

import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 19.1 KB
Line 
1/** @file
2 *
3 * InnoTek Portable Runtime - Time.
4 */
5
6/*
7 * Copyright (C) 2006 InnoTek Systemberatung GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * If you received this file as part of a commercial VirtualBox
18 * distribution, then only the terms of your commercial VirtualBox
19 * license agreement apply instead of the previous paragraph.
20 */
21
22#ifndef __iprt_time_h__
23#define __iprt_time_h__
24
25#include <iprt/cdefs.h>
26#include <iprt/types.h>
27
28__BEGIN_DECLS
29
30/** @defgroup grp_rt_time RTTime - Time
31 * @ingroup grp_rt
32 * @{
33 */
34
35/** Time Specification.
36 *
37 * Use the inline RTTimeSpecGet/Set to operate on structure this so we
38 * can easily change the representation if required later.
39 *
40 * The current representation is in nanoseconds relative to the unix epoch
41 * (1970-01-01 00:00:00 UTC). This gives us an approximate span from
42 * 1678 to 2262 without sacrifying the resolution offered by the various
43 * host OSes (BSD & LINUX 1ns, NT 100ns).
44 */
45typedef struct RTTIMESPEC
46{
47 /** Nanoseconds since epoch.
48 * The name is intentially too long to be comfortable to use because you should be
49 * using inline helpers! */
50 int64_t i64NanosecondsRelativeToUnixEpoch;
51} RTTIMESPEC;
52/** Pointer to a time spec structure. */
53typedef RTTIMESPEC *PRTTIMESPEC;
54/** Pointer to a const time spec structure. */
55typedef const RTTIMESPEC *PCRTTIMESPEC;
56
57
58/** @name RTTIMESPEC methods
59 * @{ */
60
61/**
62 * Gets the time as nanoseconds relative to the unix epoch.
63 *
64 * @returns Nanoseconds relative to unix epoch.
65 * @param pTime The time spec to interpret.
66 */
67DECLINLINE(int64_t) RTTimeSpecGetNano(PCRTTIMESPEC pTime)
68{
69 return pTime->i64NanosecondsRelativeToUnixEpoch;
70}
71
72
73/**
74 * Sets the time give by nanoseconds relative to the unix epoch.
75 *
76 * @returns pTime.
77 * @param pTime The time spec to modify.
78 * @param i64Nano The new time in nanoseconds.
79 */
80DECLINLINE(PRTTIMESPEC) RTTimeSpecSetNano(PRTTIMESPEC pTime, int64_t i64Nano)
81{
82 pTime->i64NanosecondsRelativeToUnixEpoch = i64Nano;
83 return pTime;
84}
85
86
87/**
88 * Gets the time as microseconds relative to the unix epoch.
89 *
90 * @returns microseconds relative to unix epoch.
91 * @param pTime The time spec to interpret.
92 */
93DECLINLINE(int64_t) RTTimeSpecGetMicro(PCRTTIMESPEC pTime)
94{
95 return pTime->i64NanosecondsRelativeToUnixEpoch / 1000;
96}
97
98
99/**
100 * Sets the time given by microseconds relative to the unix epoch.
101 *
102 * @returns pTime.
103 * @param pTime The time spec to modify.
104 * @param i64Micro The new time in microsecond.
105 */
106DECLINLINE(PRTTIMESPEC) RTTimeSpecSetMicro(PRTTIMESPEC pTime, int64_t i64Micro)
107{
108 pTime->i64NanosecondsRelativeToUnixEpoch = i64Micro * 1000;
109 return pTime;
110}
111
112
113/**
114 * Gets the time as milliseconds relative to the unix epoch.
115 *
116 * @returns milliseconds relative to unix epoch.
117 * @param pTime The time spec to interpret.
118 */
119DECLINLINE(int64_t) RTTimeSpecGetMilli(PCRTTIMESPEC pTime)
120{
121 return pTime->i64NanosecondsRelativeToUnixEpoch / 1000000;
122}
123
124
125/**
126 * Sets the time given by milliseconds relative to the unix epoch.
127 *
128 * @returns pTime.
129 * @param pTime The time spec to modify.
130 * @param i64Milli The new time in milliseconds.
131 */
132DECLINLINE(PRTTIMESPEC) RTTimeSpecSetMilli(PRTTIMESPEC pTime, int64_t i64Milli)
133{
134 pTime->i64NanosecondsRelativeToUnixEpoch = i64Milli * 1000000;
135 return pTime;
136}
137
138
139/**
140 * Gets the time as seconds relative to the unix epoch.
141 *
142 * @returns seconds relative to unix epoch.
143 * @param pTime The time spec to interpret.
144 */
145DECLINLINE(int64_t) RTTimeSpecGetSeconds(PCRTTIMESPEC pTime)
146{
147 return pTime->i64NanosecondsRelativeToUnixEpoch / 1000000000;
148}
149
150
151/**
152 * Sets the time given by seconds relative to the unix epoch.
153 *
154 * @returns pTime.
155 * @param pTime The time spec to modify.
156 * @param i64Seconds The new time in seconds.
157 */
158DECLINLINE(PRTTIMESPEC) RTTimeSpecSetSeconds(PRTTIMESPEC pTime, int64_t i64Seconds)
159{
160 pTime->i64NanosecondsRelativeToUnixEpoch = i64Seconds * 1000000000;
161 return pTime;
162}
163
164
165/**
166 * Adds a time period to the time.
167 *
168 * @returns pTime.
169 * @param pTime The time spec to modify.
170 * @param pTimeAdd The time spec to add to pTime.
171 */
172DECLINLINE(PRTTIMESPEC) RTTimeSpecAdd(PRTTIMESPEC pTime, PCRTTIMESPEC pTimeAdd)
173{
174 pTime->i64NanosecondsRelativeToUnixEpoch += pTimeAdd->i64NanosecondsRelativeToUnixEpoch;
175 return pTime;
176}
177
178
179/**
180 * Adds a time period give as nanoseconds from the time.
181 *
182 * @returns pTime.
183 * @param pTime The time spec to modify.
184 * @param i64Nano The time period in nanoseconds.
185 */
186DECLINLINE(PRTTIMESPEC) RTTimeSpecAddNano(PRTTIMESPEC pTime, int64_t i64Nano)
187{
188 pTime->i64NanosecondsRelativeToUnixEpoch += i64Nano;
189 return pTime;
190}
191
192
193/**
194 * Adds a time period give as microseconds from the time.
195 *
196 * @returns pTime.
197 * @param pTime The time spec to modify.
198 * @param i64Micro The time period in microseconds.
199 */
200DECLINLINE(PRTTIMESPEC) RTTimeSpecAddMicro(PRTTIMESPEC pTime, int64_t i64Micro)
201{
202 pTime->i64NanosecondsRelativeToUnixEpoch += i64Micro * 1000;
203 return pTime;
204}
205
206
207/**
208 * Adds a time period give as milliseconds from the time.
209 *
210 * @returns pTime.
211 * @param pTime The time spec to modify.
212 * @param i64Milli The time period in milliseconds.
213 */
214DECLINLINE(PRTTIMESPEC) RTTimeSpecAddMilli(PRTTIMESPEC pTime, int64_t i64Milli)
215{
216 pTime->i64NanosecondsRelativeToUnixEpoch += i64Milli * 1000000;
217 return pTime;
218}
219
220
221/**
222 * Adds a time period give as seconds from the time.
223 *
224 * @returns pTime.
225 * @param pTime The time spec to modify.
226 * @param i64Seconds The time period in seconds.
227 */
228DECLINLINE(PRTTIMESPEC) RTTimeSpecAddSeconds(PRTTIMESPEC pTime, int64_t i64Seconds)
229{
230 pTime->i64NanosecondsRelativeToUnixEpoch += i64Seconds * 1000000000;
231 return pTime;
232}
233
234
235/**
236 * Subtracts a time period from the time.
237 *
238 * @returns pTime.
239 * @param pTime The time spec to modify.
240 * @param pTimeSub The time spec to subtract from pTime.
241 */
242DECLINLINE(PRTTIMESPEC) RTTimeSpecSub(PRTTIMESPEC pTime, PCRTTIMESPEC pTimeSub)
243{
244 pTime->i64NanosecondsRelativeToUnixEpoch -= pTimeSub->i64NanosecondsRelativeToUnixEpoch;
245 return pTime;
246}
247
248
249/**
250 * Subtracts a time period give as nanoseconds from the time.
251 *
252 * @returns pTime.
253 * @param pTime The time spec to modify.
254 * @param i64Nano The time period in nanoseconds.
255 */
256DECLINLINE(PRTTIMESPEC) RTTimeSpecSubNano(PRTTIMESPEC pTime, int64_t i64Nano)
257{
258 pTime->i64NanosecondsRelativeToUnixEpoch -= i64Nano;
259 return pTime;
260}
261
262
263/**
264 * Subtracts a time period give as microseconds from the time.
265 *
266 * @returns pTime.
267 * @param pTime The time spec to modify.
268 * @param i64Micro The time period in microseconds.
269 */
270DECLINLINE(PRTTIMESPEC) RTTimeSpecSubMicro(PRTTIMESPEC pTime, int64_t i64Micro)
271{
272 pTime->i64NanosecondsRelativeToUnixEpoch -= i64Micro * 1000;
273 return pTime;
274}
275
276
277/**
278 * Subtracts a time period give as milliseconds from the time.
279 *
280 * @returns pTime.
281 * @param pTime The time spec to modify.
282 * @param i64Milli The time period in milliseconds.
283 */
284DECLINLINE(PRTTIMESPEC) RTTimeSpecSubMilli(PRTTIMESPEC pTime, int64_t i64Milli)
285{
286 pTime->i64NanosecondsRelativeToUnixEpoch -= i64Milli * 1000000;
287 return pTime;
288}
289
290
291/**
292 * Subtracts a time period give as seconds from the time.
293 *
294 * @returns pTime.
295 * @param pTime The time spec to modify.
296 * @param i64Seconds The time period in seconds.
297 */
298DECLINLINE(PRTTIMESPEC) RTTimeSpecSubSeconds(PRTTIMESPEC pTime, int64_t i64Seconds)
299{
300 pTime->i64NanosecondsRelativeToUnixEpoch -= i64Seconds * 100000000;
301 return pTime;
302}
303
304
305#if defined(RTTIME_INCL_TIMEVAL) || defined(_STRUCT_TIMEVAL) || defined(TIMEVAL_TO_TIMESPEC)
306/**
307 * Gets the time as POSIX timeval.
308 *
309 * @returns pTime.
310 * @param pTime The time spec to interpret.
311 * @param pTimeval Where to store the time as POSIX timeval.
312 */
313DECLINLINE(struct timeval *) RTTimeSpecGetTimeval(PCRTTIMESPEC pTime, struct timeval *pTimeval)
314{
315 int64_t i64 = RTTimeSpecGetMicro(pTime);
316 int32_t i32Micro = (int32_t)(i64 % 1000000);
317 i64 /= 1000000;
318 if (i32Micro < 0)
319 {
320 i32Micro += 1000000;
321 i64++;
322 }
323 pTimeval->tv_sec = (time_t)i64;
324 pTimeval->tv_usec = i32Micro;
325 return pTimeval;
326}
327
328/**
329 * Sets the time as POSIX timeval.
330 *
331 * @returns pTime.
332 * @param pTime The time spec to modify.
333 * @param pTimeval Pointer to the POSIX timeval struct with the new time.
334 */
335DECLINLINE(PRTTIMESPEC) RTTimeSpecSetTimeval(PRTTIMESPEC pTime, const struct timeval *pTimeval)
336{
337 return RTTimeSpecAddMicro(RTTimeSpecSetSeconds(pTime, pTimeval->tv_sec), pTimeval->tv_usec);
338}
339#endif /* various ways of detecting struct timeval */
340
341
342#if defined(RTTIME_INCL_TIMESPEC) || defined(_STRUCT_TIMESPEC) || defined(TIMEVAL_TO_TIMESPEC)
343/**
344 * Gets the time as POSIX timespec.
345 *
346 * @returns pTime.
347 * @param pTime The time spec to interpret.
348 * @param pTimespec Where to store the time as POSIX timespec.
349 */
350DECLINLINE(struct timespec *) RTTimeSpecGetTimespec(PCRTTIMESPEC pTime, struct timespec *pTimespec)
351{
352 int64_t i64 = RTTimeSpecGetNano(pTime);
353 int32_t i32Nano = (int32_t)(i64 % 1000000000);
354 i64 /= 1000000000;
355 if (i32Nano < 0)
356 {
357 i32Nano += 1000000000;
358 i64++;
359 }
360 pTimespec->tv_sec = (time_t)i64;
361 pTimespec->tv_nsec = i32Nano;
362 return pTimespec;
363}
364
365/**
366 * Sets the time as POSIX timespec.
367 *
368 * @returns pTime.
369 * @param pTime The time spec to modify.
370 * @param pTimespec Pointer to the POSIX timespec struct with the new time.
371 */
372DECLINLINE(PRTTIMESPEC) RTTimeSpecSetTimespec(PRTTIMESPEC pTime, const struct timespec *pTimespec)
373{
374 return RTTimeSpecAddNano(RTTimeSpecSetSeconds(pTime, pTimespec->tv_sec), pTimespec->tv_nsec);
375}
376#endif /* various ways of detecting struct timespec */
377
378
379
380/** The offset of the unix epoch and the base for NT time (in 100ns units).
381 * Nt time starts at 1601-01-01 00:00:00. */
382#define RTTIME_NT_TIME_OFFSET_UNIX (116444736000000000LL)
383
384
385/**
386 * Gets the time as NT time.
387 *
388 * @returns Nt time.
389 * @param pTime The time spec to interpret.
390 */
391DECLINLINE(uint64_t) RTTimeSpecGetNtTime(PCRTTIMESPEC pTime)
392{
393 return pTime->i64NanosecondsRelativeToUnixEpoch / 100
394 + RTTIME_NT_TIME_OFFSET_UNIX;
395}
396
397
398/**
399 * Sets the time given by Nt time.
400 *
401 * @returns pTime.
402 * @param pTime The time spec to modify.
403 * @param u64NtTime The new time in Nt time.
404 */
405DECLINLINE(PRTTIMESPEC) RTTimeSpecSetNtTime(PRTTIMESPEC pTime, uint64_t u64NtTime)
406{
407 pTime->i64NanosecondsRelativeToUnixEpoch =
408 ((int64_t)u64NtTime - RTTIME_NT_TIME_OFFSET_UNIX) * 100;
409 return pTime;
410}
411
412
413#ifdef _FILETIME_
414/**
415 * Gets the time as NT file time.
416 *
417 * @returns pFileTime.
418 * @param pTime The time spec to interpret.
419 * @param pFileTime Pointer to NT filetime structure.
420 */
421DECLINLINE(PFILETIME) RTTimeSpecGetNtFileTime(PCRTTIMESPEC pTime, PFILETIME pFileTime)
422{
423 *((uint64_t *)pFileTime) = RTTimeSpecGetNtTime(pTime);
424 return pFileTime;
425}
426
427/**
428 * Sets the time as NT file time.
429 *
430 * @returns pTime.
431 * @param pTime The time spec to modify.
432 * @param pFileTime Where to store the time as Nt file time.
433 */
434DECLINLINE(PRTTIMESPEC) RTTimeSpecSetNtFileTime(PRTTIMESPEC pTime, const FILETIME *pFileTime)
435{
436 return RTTimeSpecSetNtTime(pTime, *(const uint64_t *)pFileTime);
437}
438#endif
439
440
441/** The offset to the start of DOS time.
442 * DOS time starts 1980-01-01 00:00:00. */
443#define RTTIME_OFFSET_DOS_TIME (315532800000000000LL)
444
445
446/**
447 * Gets the time as seconds relative to the start of dos time.
448 *
449 * @returns seconds relative to the start of dos time.
450 * @param pTime The time spec to interpret.
451 */
452DECLINLINE(int64_t) RTTimeSpecGetDosSeconds(PCRTTIMESPEC pTime)
453{
454 return (pTime->i64NanosecondsRelativeToUnixEpoch + RTTIME_OFFSET_DOS_TIME)
455 / 1000000000;
456}
457
458
459/**
460 * Sets the time given by seconds relative to the start of dos time.
461 *
462 * @returns pTime.
463 * @param pTime The time spec to modify.
464 * @param i64Seconds The new time in seconds relative to the start of dos time.
465 */
466DECLINLINE(PRTTIMESPEC) RTTimeSpecSetDosSeconds(PRTTIMESPEC pTime, int64_t i64Seconds)
467{
468 pTime->i64NanosecondsRelativeToUnixEpoch = i64Seconds * 1000000000
469 - RTTIME_NT_TIME_OFFSET_UNIX;
470 return pTime;
471}
472
473
474/**
475 * Compare two time specs.
476 *
477 * @returns true they are equal.
478 * @returns false they are not equal.
479 * @param pTime1 The 1st time spec.
480 * @param pTime2 The 2nd time spec.
481 */
482DECLINLINE(bool) RTTimeSpecIsEqual(PCRTTIMESPEC pTime1, PCRTTIMESPEC pTime2)
483{
484 return pTime1->i64NanosecondsRelativeToUnixEpoch == pTime2->i64NanosecondsRelativeToUnixEpoch;
485}
486
487/**
488 * Converts a time spec to a ISO date string.
489 *
490 * @returns psz on success.
491 * @returns NULL on buffer underflow.
492 * @param pTime The time spec.
493 * @param psz Where to store the string.
494 * @param cb The size of the buffer.
495 */
496RTDECL(char *) RTTimeSpecToString(PCRTTIMESPEC pTime, char *psz, size_t cb);
497
498/** @} */
499
500
501/**
502 * Exploded time.
503 */
504#pragma pack(1)
505typedef struct RTTIME
506{
507 /** The year number. */
508 int32_t i32Year;
509 /** The month of the year (1-12). January is 1. */
510 uint8_t u8Month;
511 /** The day of the week (0-6). Monday is 0. */
512 uint8_t u8WeekDay;
513 /** The day of the year (1-366). January the 1st is 1. */
514 uint16_t u16YearDay;
515 /** The day of the month (1-31). */
516 uint8_t u8MonthDay;
517 /** Hour of the day (0-23). */
518 uint8_t u8Hour;
519 /** The minute of the hour (0-59). */
520 uint8_t u8Minute;
521 /** The second of the minute (0-60).
522 * (u32Nanosecond / 1000000) */
523 uint8_t u8Second;
524 /** The nanoseconds of the second (0-999999999). */
525 uint32_t u32Nanosecond;
526 /** Flags, of the RTTIME_FLAGS_* \#defines. */
527 uint32_t fFlags;
528/** @todo we need a UTC offset field. */
529} RTTIME;
530#pragma pack()
531/** Pointer to a exploded time structure. */
532typedef RTTIME *PRTTIME;
533/** Pointer to a const exploded time structure. */
534typedef const RTTIME *PCRTTIME;
535
536/** @name RTTIME::fFlags values.
537 * @{ */
538/** Set if the time is UTC. If clear the time local time. */
539#define RTTIME_FLAGS_TYPE_MASK 3
540/** the time is UTC time. */
541#define RTTIME_FLAGS_TYPE_UTC 2
542/** The time is local time. */
543#define RTTIME_FLAGS_TYPE_LOCAL 3
544
545/** Set if the time is local and daylight saving time is in effect.
546 * Not bit is not valid if RTTIME_FLAGS_NO_DST_DATA is set. */
547#define RTTIME_FLAGS_DST BIT(4)
548/** Set if the time is local and there is no data available on daylight saving time. */
549#define RTTIME_FLAGS_NO_DST_DATA BIT(5)
550/** Set if the year is a leap year.
551 * This is mutual exclusiv with RTTIME_FLAGS_COMMON_YEAR. */
552#define RTTIME_FLAGS_LEAP_YEAR BIT(6)
553/** Set if the year is a common year.
554 * This is mutual exclusiv with RTTIME_FLAGS_LEAP_YEAR. */
555#define RTTIME_FLAGS_COMMON_YEAR BIT(7)
556/** @} */
557
558
559/**
560 * Gets the current system time.
561 *
562 * @returns pTime.
563 * @param pTime Where to store the time.
564 */
565RTR3DECL(PRTTIMESPEC) RTTimeNow(PRTTIMESPEC pTime);
566
567/**
568 * Explodes a time spec (UTC).
569 *
570 * @returns pTime.
571 * @param pTime Where to store the exploded time.
572 * @param pTimeSpec The time spec to exploded.
573 */
574RTDECL(PRTTIME) RTTimeExplode(PRTTIME pTime, PCRTTIMESPEC pTimeSpec);
575
576/**
577 * Implodes exploded time to a time spec (UTC).
578 *
579 * @returns pTime on success.
580 * @returns NULL if the pTime data is invalid.
581 * @param pTimeSpec Where to store the imploded UTC time.
582 * If pTime specifies a time which outside the range, maximum or
583 * minimum values will be returned.
584 * @param pTime Pointer to the exploded time to implode.
585 * The fields u8Month, u8WeekDay and u8MonthDay are not used,
586 * and all the other fields are expected to be within their
587 * bounds. Use RTTimeNormalize() to calculate u16YearDay and
588 * normalize the ranges of the fields.
589 */
590RTDECL(PRTTIMESPEC) RTTimeImplode(PRTTIMESPEC pTimeSpec, PCRTTIME pTime);
591
592/**
593 * Normalizes the fields of a timestructure.
594 *
595 * It is possible to calculate month/day fields in some
596 * combinations. It's also possible to overflow other
597 * fields, and these overflows will be adjusted for.
598 *
599 * @returns pTime on success.
600 * @returns NULL if the data is invalid.
601 * @param pTime The time structure to normalize.
602 */
603RTDECL(PRTTIME) RTTimeNormalize(PRTTIME pTime);
604
605/**
606 * Gets the delta between UTC and local time.
607 *
608 * @code
609 * RTTIMESPEC LocalTime;
610 * RTTimeSpecAddNano(RTTimeNow(&LocalTime), RTTimeLocalDeltaNano());
611 * @endcode
612 *
613 * @returns Returns the nanosecond delta between UTC and local time.
614 */
615RTR3DECL(int64_t) RTTimeLocalDeltaNano(void);
616
617/**
618 * Explodes a time spec to the localized timezone.
619 *
620 * @returns pTime.
621 * @param pTime Where to store the exploded time.
622 * @param pTimeSpec The time spec to exploded.
623 */
624RTR3DECL(PRTTIME) RTTimeLocalExplode(PRTTIME pTime, PCRTTIMESPEC pTimeSpec);
625
626/**
627 * Converts a time spec to a ISO date string.
628 *
629 * @returns psz on success.
630 * @returns NULL on buffer underflow.
631 * @param pTime The time. Caller should've normalized this.
632 * @param psz Where to store the string.
633 * @param cb The size of the buffer.
634 */
635RTDECL(char *) RTTimeToString(PCRTTIME pTime, char *psz, size_t cb);
636
637/**
638 * Gets the current nanosecond timestamp.
639 *
640 * @returns nanosecond timestamp.
641 */
642RTDECL(uint64_t) RTTimeNanoTS(void);
643
644/**
645 * Gets the current millisecond timestamp.
646 *
647 * @returns millisecond timestamp.
648 */
649RTDECL(uint64_t) RTTimeMilliTS(void);
650
651/**
652 * Debugging the time api.
653 *
654 * @returns the number of 1ns steps which has been applied by rtTimeNanoTSInternal().
655 */
656RTDECL(uint32_t) RTTime1nsSteps(void);
657
658/**
659 * Gets the current nanosecond timestamp.
660 *
661 * This differs from RTTimeNanoTS in that it will use system APIs and not do any
662 * resolution or performance optimizations.
663 *
664 * @returns nanosecond timestamp.
665 */
666RTDECL(uint64_t) RTTimeSystemNanoTS(void);
667
668/**
669 * Gets the current millisecond timestamp.
670 *
671 * This differs from RTTimeNanoTS in that it will use system APIs and not do any
672 * resolution or performance optimizations.
673 *
674 * @returns millisecond timestamp.
675 */
676RTDECL(uint64_t) RTTimeSystemMilliTS(void);
677
678/**
679 * Get the nanosecond timestamp relative to program startup.
680 *
681 * @returns Timestamp relative to program startup.
682 */
683RTR3DECL(uint64_t) RTTimeProgramNanoTS(void);
684
685/**
686 * Get the millisecond timestamp relative to program startup.
687 *
688 * @returns Timestamp relative to program startup.
689 */
690RTR3DECL(uint64_t) RTTimeProgramMilliTS(void);
691
692/**
693 * Get the second timestamp relative to program startup.
694 *
695 * @returns Timestamp relative to program startup.
696 */
697RTR3DECL(uint32_t) RTTimeProgramSecTS(void);
698
699
700/** @} */
701
702__END_DECLS
703
704#endif
705
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette