3 * - By John Hodge (thePowersGang)
5 * include/vfs_threads.h
6 * - Handle maintainance functions for the VFS used by threading code
8 #ifndef _VFS_THREADS_H_
9 #define _VFS_THREADS_H_
12 extern void VFS_ReferenceUserHandles(void);
13 extern void VFS_CloseAllUserHandles(void);
15 extern void *VFS_SaveHandles(int NumFDs, int *FDs);
16 extern void VFS_RestoreHandles(int NumFDs, void *Handles);
17 extern void VFS_FreeSavedHandles(int NumFDs, void *Handles);