libexec exec fix
[minix.git] / servers / mfs / table.c
blob42fee46ee97a4143b23b2a24832d63f19a5c7163
2 /* This file contains the table used to map system call numbers onto the
3 * routines that perform them.
4 */
6 #define _TABLE
8 #include "fs.h"
9 #include "inode.h"
10 #include "buf.h"
11 #include "super.h"
13 int (*fs_call_vec[])(void) = {
14 no_sys, /* 0 not used */
15 no_sys, /* 1 */ /* Was: fs_getnode */
16 fs_putnode, /* 2 */
17 fs_slink, /* 3 */
18 fs_ftrunc, /* 4 */
19 fs_chown, /* 5 */
20 fs_chmod, /* 6 */
21 fs_inhibread, /* 7 */
22 fs_stat, /* 8 */
23 fs_utime, /* 9 */
24 fs_fstatfs, /* 10 */
25 fs_breadwrite, /* 11 */
26 fs_breadwrite, /* 12 */
27 fs_unlink, /* 13 */
28 fs_unlink, /* 14 */
29 fs_unmount, /* 15 */
30 fs_sync, /* 16 */
31 fs_new_driver, /* 17 */
32 fs_flush, /* 18 */
33 fs_readwrite, /* 19 */
34 fs_readwrite, /* 20 */
35 fs_mknod, /* 21 */
36 fs_mkdir, /* 22 */
37 fs_create, /* 23 */
38 fs_link, /* 24 */
39 fs_rename, /* 25 */
40 fs_lookup, /* 26 */
41 fs_mountpoint, /* 27 */
42 fs_readsuper, /* 28 */
43 no_sys, /* 29 */ /* Was: fs_newnode */
44 fs_rdlink, /* 30 */
45 fs_getdents, /* 31 */
46 fs_statvfs, /* 32 */