summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
authoroster <oster@NetBSD.org>2000-01-09 03:17:12 +0000
committeroster <oster@NetBSD.org>2000-01-09 03:17:12 +0000
commitfbd3b6b39659f1ac46034d51aee309ac87377aa7 (patch)
tree820168a418ff7195f62ea58fa202c6f9adfc5cbe /sys/dev/raidframe
parent87ec1ad21bafd8b655505f76e2815d969c32eb3c (diff)
Another one bites the dust.
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r--sys/dev/raidframe/rf_diskthreads.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/sys/dev/raidframe/rf_diskthreads.h b/sys/dev/raidframe/rf_diskthreads.h
deleted file mode 100644
index 1e0e25ff17c..00000000000
--- a/sys/dev/raidframe/rf_diskthreads.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/* $NetBSD: rf_diskthreads.h,v 1.3 1999/02/05 00:06:10 oster Exp $ */
-/*
- * rf_diskthreads.h
- */
-/*
- * Copyright (c) 1996 Carnegie-Mellon University.
- * All rights reserved.
- *
- * Author: Jim Zelenka
- *
- * Permission to use, copy, modify and distribute this software and
- * its documentation is hereby granted, provided that both the copyright
- * notice and this permission notice appear in all copies of the
- * software, derivative works or modified versions, and any portions
- * thereof, and that both notices appear in supporting documentation.
- *
- * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
- * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
- * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
- *
- * Carnegie Mellon requests users of this software to return to
- *
- * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
- * School of Computer Science
- * Carnegie Mellon University
- * Pittsburgh PA 15213-3890
- *
- * any improvements or extensions that they make and grant Carnegie the
- * rights to redistribute these changes.
- */
-
-/*
- * rf_diskthreads.h -- types and prototypes for disk thread system
- */
-
-#ifndef _RF__RF_DISKTHREADS_H_
-#define _RF__RF_DISKTHREADS_H_
-
-#include "rf_types.h"
-
-/* this is the information that a disk thread needs to do its job */
-struct RF_DiskId_s {
- RF_DiskQueue_t *queue;
- RF_Raid_t *raidPtr;
- RF_RaidDisk_t *disk;
- int fd; /* file descriptor */
- RF_RowCol_t row, col; /* debug only */
-};
-
-int
-rf_ConfigureDiskThreads(RF_ShutdownList_t ** listp, RF_Raid_t * raidPtr,
- RF_Config_t * cfgPtr);
-
-int rf_ShutdownDiskThreads(RF_Raid_t * raidPtr);
-
-#endif /* !_RF__RF_DISKTHREADS_H_ */