Changeset 791 for Whitix/branches
- Timestamp:
- 07/13/08 20:47:10 (5 months ago)
- Files:
-
- 1 modified
-
Whitix/branches/fs/fs/vfs/vcache.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/branches/fs/fs/vfs/vcache.c
r772 r791 85 85 ***********************************************************************/ 86 86 87 struct VNode* VNodeAlloc(struct VfsSuperBlock* superBlock, DWORD id)87 struct VNode* VNodeAlloc(struct VfsSuperBlock* superBlock, DWORD id) 88 88 { 89 89 struct VNode* newNode; … … 102 102 return newNode; 103 103 } 104 105 SYMBOL_EXPORT(VNodeAlloc); 104 106 105 107 /*********************************************************************** … … 370 372 } 371 373 374 SYMBOL_EXPORT(VNodeLock); 375 372 376 void VNodeUnlock(struct VNode* vNode) 373 377 { … … 375 379 WakeUp(&vNode->waitQueue); 376 380 } 381 382 SYMBOL_EXPORT(VNodeUnlock); 377 383 378 384 void VNodeCtor(void* obj)