diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2009-02-04 05:22:59 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2009-02-04 05:22:59 +0000 |
commit | f18b73bfbf00903e055cbd840d47d95cab75eb2f (patch) | |
tree | 4b994a08d54a6eca6f2cc14a045149e966dd56a1 | |
parent | 43a7da6ca36bc6f538024c99f4829330e44b9e6f (diff) |
gollo@ thought the timeouts were a little short, and indeed, they are off by 1000.
(not much real effect, you can only sleep so short any way)
-rw-r--r-- | usr.sbin/apmd/apmd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/apmd/apmd.c b/usr.sbin/apmd/apmd.c index 0eedae27feb..dd4608704f6 100644 --- a/usr.sbin/apmd/apmd.c +++ b/usr.sbin/apmd/apmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: apmd.c,v 1.50 2009/02/03 01:52:49 tedu Exp $ */ +/* $OpenBSD: apmd.c,v 1.51 2009/02/04 05:22:58 tedu Exp $ */ /* * Copyright (c) 1995, 1996 John T. Kohl @@ -68,8 +68,8 @@ int doperf = PERF_NONE; #define PERFINCTHRES 10 #define PERFDECTHRES 30 #define PERFTIMEOUTERR 999999999 -#define PERFTIMEOUTFAST 10000 -#define PERFTIMEOUTSLOW 25000 +#define PERFTIMEOUTFAST 10000000 +#define PERFTIMEOUTSLOW 25000000 extern char *__progname; |