1 #ifndef JEMALLOC_INTERNAL_NSTIME_TYPES_H 2 #define JEMALLOC_INTERNAL_NSTIME_TYPES_H 3 4 typedef struct nstime_s nstime_t; 5 6 /* Maximum supported number of seconds (~584 years). */ 7 #define NSTIME_SEC_MAX KQU(18446744072) 8 9 #endif /* JEMALLOC_INTERNAL_NSTIME_TYPES_H */ 10