12345678910111213141516171819202122232425262728293031 |
- /**
- * \file
- * \brief Header: Virtual File System: garbage collection code
- */
- #ifndef MC_VFS_GC_H
- #define MC_VFS_GC_H
- #include "vfs-impl.h"
- struct vfs_stamping
- {
- struct vfs_class *v;
- vfsid id;
- struct vfs_stamping *next;
- struct timeval time;
- };
- void vfs_stamp (struct vfs_class *vclass, vfsid id);
- void vfs_rmstamp (struct vfs_class *vclass, vfsid id);
- void vfs_stamp_create (struct vfs_class *vclass, vfsid id);
- void vfs_add_current_stamps (void);
- void vfs_timeout_handler (void);
- void vfs_expire (int now);
- int vfs_timeouts (void);
- void vfs_release_path (const char *dir);
- vfsid vfs_getid (struct vfs_class *vclass, const char *dir);
- void vfs_gc_done (void);
- #endif /* MC_VFS_GC_H */
|