summaryrefslogtreecommitdiff
path: root/minix/lib/libsffs/table.c
blob: d75232ff9b0435a9f9e62c62e0ebd59adbf113b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* This file contains the file system call table.
 *
 * Created:
 *   April 2009 (D.C. van Moolenbroek)
 */

#define _TABLE
#include "inc.h"

struct fsdriver sffs_dtable = {
	.fdr_mount	= do_mount,
	.fdr_unmount	= do_unmount,
	.fdr_lookup	= do_lookup,
	.fdr_putnode	= do_putnode,
	.fdr_read	= do_read,
	.fdr_write	= do_write,
	.fdr_getdents	= do_getdents,
	.fdr_trunc	= do_trunc,
	.fdr_create	= do_create,
	.fdr_mkdir	= do_mkdir,
	.fdr_unlink	= do_unlink,
	.fdr_rmdir	= do_rmdir,
	.fdr_rename	= do_rename,
	.fdr_stat	= do_stat,
	.fdr_chmod	= do_chmod,
	.fdr_utime	= do_utime,
	.fdr_statvfs	= do_statvfs
};