Changeset 791 for Whitix/branches

Show
Ignore:
Timestamp:
07/13/08 20:47:10 (5 months ago)
Author:
mwhitworth
Message:

Export some useful VNode functions.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/branches/fs/fs/vfs/vcache.c

    r772 r791  
    8585 ***********************************************************************/ 
    8686 
    87 struct VNode* VNodeAlloc(struct VfsSuperBlock* superBlock,DWORD id) 
     87struct VNode* VNodeAlloc(struct VfsSuperBlock* superBlock, DWORD id) 
    8888{ 
    8989        struct VNode* newNode; 
     
    102102        return newNode; 
    103103} 
     104 
     105SYMBOL_EXPORT(VNodeAlloc); 
    104106 
    105107/*********************************************************************** 
     
    370372} 
    371373 
     374SYMBOL_EXPORT(VNodeLock); 
     375 
    372376void VNodeUnlock(struct VNode* vNode) 
    373377{ 
     
    375379        WakeUp(&vNode->waitQueue); 
    376380} 
     381 
     382SYMBOL_EXPORT(VNodeUnlock); 
    377383 
    378384void VNodeCtor(void* obj)