home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lxapi32.zip / Include / asm / scatterl.h < prev    next >
C/C++ Source or Header  |  2002-04-26  |  438b  |  16 lines

  1. /* $Id: scatterl.h,v 1.2 2002/04/26 23:09:21 smilcke Exp $ */
  2.  
  3. #ifndef _I386_SCATTERLIST_H
  4. #define _I386_SCATTERLIST_H
  5.  
  6. struct scatterlist {
  7.     char *  address;    /* Location data is to be transferred to */
  8.     char * alt_address; /* Location of actual if address is a 
  9.              * dma indirect buffer.  NULL otherwise */
  10.     unsigned int length;
  11. };
  12.  
  13. #define ISA_DMA_THRESHOLD (0x00ffffff)
  14.  
  15. #endif /* !(_I386_SCATTERLIST_H) */
  16.