timers.h
上传用户:xu_441
上传日期:2007-01-04
资源大小:1640k
文件大小:1k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (c) 1999 Sendmail, Inc. and its suppliers.
  3.  * All rights reserved.
  4.  *
  5.  * By using this file, you agree to the terms and conditions set
  6.  * forth in the LICENSE file which can be found at the top level of
  7.  * the sendmail distribution.
  8.  *
  9.  * $Id: timers.h,v 8.4 1999/11/04 19:31:26 ca Exp $
  10.  *
  11.  * Contributed by Exactis.com, Inc.
  12.  *
  13.  */
  14. #ifndef TIMERS_H
  15. #define TIMERS_H 1
  16. #define MAXTIMERSTACK 20 /* maximum timer depth */
  17. #define TIMER struct _timer
  18. TIMER
  19. {
  20. long ti_wall_sec; /* wall clock seconds */
  21. long ti_wall_usec; /* ... microseconds */
  22. long ti_cpu_sec; /* cpu time seconds */
  23. long ti_cpu_usec; /* ... microseconds */
  24. };
  25. extern void pushtimer __P((TIMER *));
  26. extern void poptimer __P((TIMER *));
  27. extern char *strtimer __P((TIMER *));
  28. #endif /* TIMERS_H */