1998-12-16 01:30:55 +03:00
|
|
|
#ifndef _VFS_LOCAL_H_
|
|
|
|
#define _VFS_LOCAL_H_
|
|
|
|
|
2004-08-17 03:18:42 +04:00
|
|
|
#include "vfs-impl.h"
|
|
|
|
|
2004-08-17 13:17:43 +04:00
|
|
|
extern void init_localfs (void);
|
|
|
|
|
|
|
|
/* these functions are used by other filesystems, so they are
|
|
|
|
* published here. */
|
1998-12-16 01:30:55 +03:00
|
|
|
extern int local_close (void *data);
|
|
|
|
extern int local_read (void *data, char *buffer, int count);
|
|
|
|
extern int local_fstat (void *data, struct stat *buf);
|
2003-10-12 04:24:00 +04:00
|
|
|
extern int local_errno (struct vfs_class *me);
|
1998-12-16 01:30:55 +03:00
|
|
|
extern int local_lseek (void *data, off_t offset, int whence);
|
|
|
|
#ifdef HAVE_MMAP
|
2004-08-17 13:17:43 +04:00
|
|
|
extern caddr_t local_mmap (struct vfs_class *me, caddr_t addr, size_t len,
|
|
|
|
int prot, int flags, void *data, off_t offset);
|
2003-10-12 04:24:00 +04:00
|
|
|
extern int local_munmap (struct vfs_class *me, caddr_t addr, size_t len, void *data);
|
1998-12-16 01:30:55 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|