Changeset 81403 in vbox
- Timestamp:
- Oct 21, 2019 12:29:22 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134117
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cdefs.h
r81374 r81403 3465 3465 /** 1 hour expressed in nanoseconds (64-bit). */ 3466 3466 #define RT_NS_1HOUR UINT64_C(3600000000000) 3467 /** 30 minutes expressed in nanoseconds (64-bit). */ 3468 #define RT_NS_30MIN UINT64_C(1800000000000) 3469 /** 5 minutes expressed in nanoseconds (64-bit). */ 3470 #define RT_NS_5MIN UINT64_C(300000000000) 3467 3471 /** 1 minute expressed in nanoseconds (64-bit). */ 3468 3472 #define RT_NS_1MIN UINT64_C(60000000000) 3469 /** 45 second expressed in nanoseconds. */3473 /** 45 seconds expressed in nanoseconds (64-bit). */ 3470 3474 #define RT_NS_45SEC UINT64_C(45000000000) 3471 /** 30 second expressed in nanoseconds. */3475 /** 30 seconds expressed in nanoseconds (64-bit). */ 3472 3476 #define RT_NS_30SEC UINT64_C(30000000000) 3473 /** 20 second expressed in nanoseconds. */3477 /** 20 seconds expressed in nanoseconds (64-bit). */ 3474 3478 #define RT_NS_20SEC UINT64_C(20000000000) 3475 /** 15 second expressed in nanoseconds. */3479 /** 15 seconds expressed in nanoseconds (64-bit). */ 3476 3480 #define RT_NS_15SEC UINT64_C(15000000000) 3477 /** 10 second expressed in nanoseconds. */3481 /** 10 seconds expressed in nanoseconds (64-bit). */ 3478 3482 #define RT_NS_10SEC UINT64_C(10000000000) 3479 3483 /** 1 second expressed in nanoseconds. */ … … 3483 3487 /** 10 millsecond expressed in nanoseconds. */ 3484 3488 #define RT_NS_10MS UINT32_C(10000000) 3489 /** 8 millsecond expressed in nanoseconds. */ 3490 #define RT_NS_8MS UINT32_C(8000000) 3491 /** 2 millsecond expressed in nanoseconds. */ 3492 #define RT_NS_2MS UINT32_C(2000000) 3485 3493 /** 1 millsecond expressed in nanoseconds. */ 3486 3494 #define RT_NS_1MS UINT32_C(1000000) … … 3509 3517 /** 1 hour expressed in microseconds. */ 3510 3518 #define RT_US_1HOUR UINT32_C(3600000000) 3519 /** 30 minutes expressed in microseconds. */ 3520 #define RT_US_30MIN UINT32_C(1800000000) 3521 /** 5 minutes expressed in microseconds. */ 3522 #define RT_US_5MIN UINT32_C(300000000) 3511 3523 /** 1 minute expressed in microseconds. */ 3512 3524 #define RT_US_1MIN UINT32_C(60000000) 3525 /** 45 seconds expressed in microseconds. */ 3526 #define RT_US_45SEC UINT32_C(45000000) 3527 /** 30 seconds expressed in microseconds. */ 3528 #define RT_US_30SEC UINT32_C(30000000) 3529 /** 20 seconds expressed in microseconds. */ 3530 #define RT_US_20SEC UINT32_C(20000000) 3531 /** 15 seconds expressed in microseconds. */ 3532 #define RT_US_15SEC UINT32_C(15000000) 3533 /** 10 seconds expressed in microseconds. */ 3534 #define RT_US_10SEC UINT32_C(10000000) 3535 /** 5 seconds expressed in microseconds. */ 3536 #define RT_US_5SEC UINT32_C(5000000) 3513 3537 /** 1 second expressed in microseconds. */ 3514 3538 #define RT_US_1SEC UINT32_C(1000000) … … 3522 3546 /** 1 hour expressed in microseconds - 64-bit type. */ 3523 3547 #define RT_US_1HOUR_64 UINT64_C(3600000000) 3548 /** 30 minutes expressed in microseconds - 64-bit type. */ 3549 #define RT_US_30MIN_64 UINT64_C(1800000000) 3550 /** 5 minutes expressed in microseconds - 64-bit type. */ 3551 #define RT_US_5MIN_64 UINT64_C(300000000) 3524 3552 /** 1 minute expressed in microseconds - 64-bit type. */ 3525 3553 #define RT_US_1MIN_64 UINT64_C(60000000) 3554 /** 45 seconds expressed in microseconds - 64-bit type. */ 3555 #define RT_US_45SEC_64 UINT64_C(45000000) 3556 /** 30 seconds expressed in microseconds - 64-bit type. */ 3557 #define RT_US_30SEC_64 UINT64_C(30000000) 3558 /** 20 seconds expressed in microseconds - 64-bit type. */ 3559 #define RT_US_20SEC_64 UINT64_C(20000000) 3560 /** 15 seconds expressed in microseconds - 64-bit type. */ 3561 #define RT_US_15SEC_64 UINT64_C(15000000) 3562 /** 10 seconds expressed in microseconds - 64-bit type. */ 3563 #define RT_US_10SEC_64 UINT64_C(10000000) 3564 /** 5 seconds expressed in microseconds - 64-bit type. */ 3565 #define RT_US_5SEC_64 UINT64_C(5000000) 3526 3566 /** 1 second expressed in microseconds - 64-bit type. */ 3527 3567 #define RT_US_1SEC_64 UINT64_C(1000000) … … 3535 3575 /** 1 hour expressed in milliseconds. */ 3536 3576 #define RT_MS_1HOUR UINT32_C(3600000) 3577 /** 30 minutes expressed in milliseconds. */ 3578 #define RT_MS_30MIN UINT32_C(1800000) 3579 /** 5 minutes expressed in milliseconds. */ 3580 #define RT_MS_5MIN UINT32_C(300000) 3537 3581 /** 1 minute expressed in milliseconds. */ 3538 3582 #define RT_MS_1MIN UINT32_C(60000) 3583 /** 45 seconds expressed in milliseconds. */ 3584 #define RT_MS_45SEC UINT32_C(45000) 3585 /** 30 seconds expressed in milliseconds. */ 3586 #define RT_MS_30SEC UINT32_C(30000) 3587 /** 20 seconds expressed in milliseconds. */ 3588 #define RT_MS_20SEC UINT32_C(20000) 3589 /** 15 seconds expressed in milliseconds. */ 3590 #define RT_MS_15SEC UINT32_C(15000) 3591 /** 10 seconds expressed in milliseconds. */ 3592 #define RT_MS_10SEC UINT32_C(10000) 3593 /** 5 seconds expressed in milliseconds. */ 3594 #define RT_MS_5SEC UINT32_C(5000) 3539 3595 /** 1 second expressed in milliseconds. */ 3540 3596 #define RT_MS_1SEC UINT32_C(1000) … … 3542 3598 /** 1 hour expressed in milliseconds - 64-bit type. */ 3543 3599 #define RT_MS_1HOUR_64 UINT64_C(3600000) 3600 /** 30 minutes expressed in milliseconds - 64-bit type. */ 3601 #define RT_MS_30MIN_64 UINT64_C(1800000) 3602 /** 5 minutes expressed in milliseconds - 64-bit type. */ 3603 #define RT_MS_5MIN_64 UINT64_C(300000) 3544 3604 /** 1 minute expressed in milliseconds - 64-bit type. */ 3545 3605 #define RT_MS_1MIN_64 UINT64_C(60000) 3606 /** 45 seconds expressed in milliseconds - 64-bit type. */ 3607 #define RT_MS_45SEC_64 UINT64_C(45000) 3608 /** 30 seconds expressed in milliseconds - 64-bit type. */ 3609 #define RT_MS_30SEC_64 UINT64_C(30000) 3610 /** 20 seconds expressed in milliseconds - 64-bit type. */ 3611 #define RT_MS_20SEC_64 UINT64_C(20000) 3612 /** 15 seconds expressed in milliseconds - 64-bit type. */ 3613 #define RT_MS_15SEC_64 UINT64_C(15000) 3614 /** 10 seconds expressed in milliseconds - 64-bit type. */ 3615 #define RT_MS_10SEC_64 UINT64_C(10000) 3616 /** 5 seconds expressed in milliseconds - 64-bit type. */ 3617 #define RT_MS_5SEC_64 UINT64_C(5000) 3546 3618 /** 1 second expressed in milliseconds - 64-bit type. */ 3547 3619 #define RT_MS_1SEC_64 UINT64_C(1000)
Note:
See TracChangeset
for help on using the changeset viewer.