Deleted Added
full compact
timers.c (98121) timers.c (157001)
1/*
2 * Copyright (c) 1999-2001 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 * Contributed by Exactis.com, Inc.
10 *
11 */
12
13#include <sm/gen.h>
1/*
2 * Copyright (c) 1999-2001 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 * Contributed by Exactis.com, Inc.
10 *
11 */
12
13#include <sm/gen.h>
14SM_RCSID("@(#)$Id: timers.c,v 8.24 2001/09/11 04:05:17 gshapiro Exp $")
14SM_RCSID("@(#)$Id: timers.c,v 8.25 2005/06/14 23:07:23 ca Exp $")
15
16#if _FFR_TIMERS
17# include <sys/types.h>
15
16#if _FFR_TIMERS
17# include <sys/types.h>
18# include <sys/time.h>
18# include <sm/time.h>
19# include "sendmail.h"
20# include <sys/resource.h> /* Must be after sendmail.h for NCR MP-RAS */
21
22static TIMER BaseTimer; /* current baseline */
23static int NTimers; /* current pointer into stack */
24static TIMER *TimerStack[MAXTIMERSTACK];
25
26static void

--- 205 unchanged lines hidden ---
19# include "sendmail.h"
20# include <sys/resource.h> /* Must be after sendmail.h for NCR MP-RAS */
21
22static TIMER BaseTimer; /* current baseline */
23static int NTimers; /* current pointer into stack */
24static TIMER *TimerStack[MAXTIMERSTACK];
25
26static void

--- 205 unchanged lines hidden ---