1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
/*
* os_freebsd.h
*
* Home page of code is: http://smartmontools.sourceforge.net
*
* Copyright (C) 2003-4 Eduard Martinescu <smartmontools-support@lists.sourceforge.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* You should have received a copy of the GNU General Public License
* (for example COPYING); if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* This code was originally developed as a Senior Thesis by Michael Cornwell
* at the Concurrent Systems Laboratory (now part of the Storage Systems
* Research Center), Jack Baskin School of Engineering, University of
* California, Santa Cruz. http://ssrc.soe.ucsc.edu/
*
*/
#ifndef OS_FREEBSD_H_
#define OS_FREEBSD_H_
#define OS_XXXX_H_CVSID "$Id: os_freebsd.h,v 1.9 2004/01/02 16:05:25 ballen4705 Exp $\n"
struct freebsd_dev_channel {
int channel; // the ATA channel to work with
int device; // the device on the channel
int atacommand; // the ATA Command file descriptor (/dev/ata)
char* devname; // the SCSI device name
int unitnum; // the SCSI unit number
int scsicontrol; // the SCSI control interface
};
#define FREEBSD_MAXDEV 64
#define FREEBSD_FDOFFSET 16;
#define MAX_NUM_DEV 26
#endif /* OS_FREEBSD_H_ */
|