Sorting source tree a bit
[tpg/acess2.git] / KernelLand / Kernel / include / vfs_threads.h
1 /*
2  * Acess2 Kernel
3  * - By John Hodge (thePowersGang)
4  *
5  * include/vfs_threads.h
6  * - Handle maintainance functions for the VFS used by threading code
7  */
8 #ifndef _VFS_THREADS_H_
9 #define _VFS_THREADS_H_
10
11 // === FUNCTIONS ===
12 extern void     VFS_ReferenceUserHandles(void);
13 extern void     VFS_CloseAllUserHandles(void);
14
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);
18
19 #endif

UCC git Repository :: git.ucc.asn.au