Changeset 750
- Timestamp:
- 07/08/08 15:43:30 (5 months ago)
- Location:
- Whitix/branches/fs/include
- Files:
-
- 1 added
- 2 modified
-
fs/bcache.h (modified) (1 diff)
-
fs/journal.h (added)
-
task.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/branches/fs/include/fs/bcache.h
r670 r750 53 53 BYTE* data; 54 54 WaitQueue waitQueue; 55 void* privData; 55 56 }; 56 57 -
Whitix/branches/fs/include/task.h
r668 r750 20 20 #define TASK_H 21 21 22 #include <fs/journal.h> 22 23 #include <llist.h> 23 24 #include <typedefs.h> … … 41 42 struct FpuSave fpuData; 42 43 struct Context* currContext; 44 struct JournalHandle* currHandle; /* Each thread can run its own transaction. */ 43 45 }; 44 46