rf_paritylogDiskMgr.h revision 1.1 1 /* $NetBSD: rf_paritylogDiskMgr.h,v 1.1 1998/11/13 04:20:32 oster Exp $ */
2 /*
3 * Copyright (c) 1995 Carnegie-Mellon University.
4 * All rights reserved.
5 *
6 * Author: William V. Courtright II
7 *
8 * Permission to use, copy, modify and distribute this software and
9 * its documentation is hereby granted, provided that both the copyright
10 * notice and this permission notice appear in all copies of the
11 * software, derivative works or modified versions, and any portions
12 * thereof, and that both notices appear in supporting documentation.
13 *
14 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
15 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
16 * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
17 *
18 * Carnegie Mellon requests users of this software to return to
19 *
20 * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
21 * School of Computer Science
22 * Carnegie Mellon University
23 * Pittsburgh PA 15213-3890
24 *
25 * any improvements or extensions that they make and grant Carnegie the
26 * rights to redistribute these changes.
27 */
28
29 /* header file for parity log disk mgr code
30 *
31 * :
32 * Log: rf_paritylogDiskMgr.h,v
33 * Revision 1.5 1996/06/02 17:31:48 jimz
34 * Moved a lot of global stuff into array structure, where it belongs.
35 * Fixed up paritylogging, pss modules in this manner. Some general
36 * code cleanup. Removed lots of dead code, some dead files.
37 *
38 * Revision 1.4 1996/05/23 21:46:35 jimz
39 * checkpoint in code cleanup (release prep)
40 * lots of types, function names have been fixed
41 *
42 * Revision 1.3 1995/12/06 20:56:39 wvcii
43 * added prototypes
44 *
45 * Revision 1.2 1995/11/30 16:06:21 wvcii
46 * added copyright info
47 *
48 * Revision 1.1 1995/09/06 19:25:29 wvcii
49 * Initial revision
50 *
51 *
52 */
53
54 #ifndef _RF__RF_PARITYLOGDISKMGR_H_
55 #define _RF__RF_PARITYLOGDISKMGR_H_
56
57 #include "rf_types.h"
58
59 int rf_ShutdownLogging(RF_Raid_t *raidPtr);
60 int rf_ParityLoggingDiskManager(RF_Raid_t *raidPtr);
61
62 #endif /* !_RF__RF_PARITYLOGDISKMGR_H_ */
63