Changeset 1957 for Whitix/tags
- Timestamp:
- 02/28/09 16:05:32 (3 years ago)
- Files:
-
- 1 modified
-
Whitix/tags/0.2b/include/devices/sdevice.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/tags/0.2b/include/devices/sdevice.h
r1874 r1957 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
