- Timestamp:
- 04/02/09 21:06:43 (3 years ago)
- Files:
-
- 1 modified
-
Whitix/trunk/include/devices/sdevice.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/trunk/include/devices/sdevice.h
r1874 r1997 24 24 #include <typedefs.h> 25 25 #include <llist.h> 26 #include <wait.h> 26 27 27 28 /* Common interface to storage devices for the block cache code */ … … 42 43 /* Hardware information - may not apply for some storage devices */ 43 44 DWORD heads, sectors, cylinders; 45 46 /* Flushing information */ 47 int syncing, numDirty; 48 WaitQueue flushDone; 44 49 }; 45 50
