diff options
author | Thierry Deval <tdeval@cvs.openbsd.org> | 2002-03-08 09:25:58 +0000 |
---|---|---|
committer | Thierry Deval <tdeval@cvs.openbsd.org> | 2002-03-08 09:25:58 +0000 |
commit | 3d00e0f93ff6235b005af68a9dd877c250d132d4 (patch) | |
tree | 15782a356b94736aa0f9cacc7959b0aac9014899 /sys | |
parent | b911f897b8df90cc1c0fd801566642faefcda9b4 (diff) |
numraid is needed, always.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/raidframe/rf_engine.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/raidframe/rf_engine.c b/sys/dev/raidframe/rf_engine.c index 7e0efe03bcc..c3e3f77acee 100644 --- a/sys/dev/raidframe/rf_engine.c +++ b/sys/dev/raidframe/rf_engine.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rf_engine.c,v 1.9 2002/03/06 11:28:27 tdeval Exp $ */ +/* $OpenBSD: rf_engine.c,v 1.10 2002/03/08 09:25:57 tdeval Exp $ */ /* $NetBSD: rf_engine.c,v 1.10 2000/08/20 16:51:03 thorpej Exp $ */ /* * Copyright (c) 1995 Carnegie-Mellon University. @@ -67,14 +67,14 @@ #include "rf_shutdown.h" #include "rf_raid.h" +void DAGExecutionThread(RF_ThreadArg_t arg); #ifdef RAID_AUTOCONFIG +void DAGExecutionThread_pre(RF_ThreadArg_t arg); #define RF_ENGINE_PID 10 -extern int numraid; extern pid_t lastpid; -void DAGExecutionThread_pre(RF_ThreadArg_t arg); #endif /* RAID_AUTOCONFIG */ -void DAGExecutionThread(RF_ThreadArg_t arg); -void **rf_hook_cookies; +void **rf_hook_cookies; +extern int numraid; #define DO_INIT(_l_,_r_) { \ int _rc; \ |