Print this page
XXXX update sendmail to 8.14.9
| Split |
Close |
| Expand all |
| Collapse all |
--- old/usr/src/cmd/sendmail/src/timers.h
+++ new/usr/src/cmd/sendmail/src/timers.h
1 1 /*
2 - * Copyright (c) 1999-2000 Sendmail, Inc. and its suppliers.
2 + * Copyright (c) 1999-2000 Proofpoint, Inc. and its suppliers.
3 3 * All rights reserved.
4 4 *
5 5 * By using this file, you agree to the terms and conditions set
6 6 * forth in the LICENSE file which can be found at the top level of
7 7 * the sendmail distribution.
8 8 *
9 - * $Id: timers.h,v 8.6 2001/04/03 01:53:18 gshapiro Exp $
9 + * $Id: timers.h,v 8.7 2013-11-22 20:51:57 ca Exp $
10 10 *
11 11 * Contributed by Exactis.com, Inc.
12 12 *
13 13 */
14 14
15 -#pragma ident "%Z%%M% %I% %E% SMI"
16 -
17 15 #ifndef TIMERS_H
18 16 #define TIMERS_H 1
19 17
20 18 #define MAXTIMERSTACK 20 /* maximum timer depth */
21 19
22 20 #define TIMER struct _timer
23 21
24 22 TIMER
25 23 {
26 24 long ti_wall_sec; /* wall clock seconds */
27 25 long ti_wall_usec; /* ... microseconds */
28 26 long ti_cpu_sec; /* cpu time seconds */
29 27 long ti_cpu_usec; /* ... microseconds */
30 28 };
31 29
32 30 extern void pushtimer __P((TIMER *));
33 31 extern void poptimer __P((TIMER *));
34 32 extern char *strtimer __P((TIMER *));
35 33 #endif /* ! TIMERS_H */
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX