Ignore:
Timestamp:
Feb 25, 2006 2:04:42 AM (18 years ago)
Author:
bennylp
Message:

Synched with documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/os.h

    r106 r228  
    891891 */ 
    892892#if defined(PJ_HAS_HIGH_RES_TIMER) && PJ_HAS_HIGH_RES_TIMER != 0 
    893  
    894 /** 
    895  * This structure represents high resolution (64bit) time value. The time 
    896  * values represent time in cycles, which is retrieved by calling 
    897  * #pj_get_timestamp(). 
    898  */ 
    899 typedef union pj_timestamp 
    900 { 
    901     struct 
    902     { 
    903 #if defined(PJ_IS_LITTLE_ENDIAN) && PJ_IS_LITTLE_ENDIAN!=0 
    904         pj_uint32_t lo;     /**< Low 32-bit value of the 64-bit value. */ 
    905         pj_uint32_t hi;     /**< high 32-bit value of the 64-bit value. */ 
    906 #else 
    907         pj_uint32_t hi;     /**< high 32-bit value of the 64-bit value. */ 
    908         pj_uint32_t lo;     /**< Low 32-bit value of the 64-bit value. */ 
    909 #endif 
    910     } u32;                  /**< The 64-bit value as two 32-bit values. */ 
    911  
    912 #if PJ_HAS_INT64 
    913     pj_uint64_t u64;        /**< The whole 64-bit value, where available. */ 
    914 #endif 
    915 } pj_timestamp; 
    916  
    917893 
    918894/** 
Note: See TracChangeset for help on using the changeset viewer.