time.h 647 B

1234567891011121314151617181920212223
  1. /* Copyright (c) 2001, Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2019, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. #ifndef TOR_TIME_DEFS_H
  7. #define TOR_TIME_DEFS_H
  8. /**
  9. * \file time.h
  10. *
  11. * \brief Definitions for timing-related constants.
  12. **/
  13. /** How many microseconds per second */
  14. #define TOR_USEC_PER_SEC (1000000)
  15. /** How many nanoseconds per microsecond */
  16. #define TOR_NSEC_PER_USEC (1000)
  17. /* How many nanoseconds per millisecond */
  18. #define TOR_NSEC_PER_MSEC (1000*1000)
  19. #endif /* !defined(TOR_TIME_DEFS_H) */