test41: relax maximum timer tick rate
[minix.git] / servers / iso9660fs / table.c
blob307ff4cda4166cde0d0f46332aba69a1997840af
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 "inc.h"
10 int (*fs_call_vec[])(void) = {
11 no_sys, /* 0: not used */
12 no_sys, /* 1: not used */
13 fs_putnode, /* 2 */
14 no_sys, /* 3: not used */
15 no_sys, /* 4: not used */
16 no_sys, /* 5: not used */
17 no_sys, /* 6: not used */
18 do_noop, /* 7 */
19 fs_stat, /* 8 */
20 no_sys, /* 9: not used */
21 fs_fstatfs, /* 10 */
22 fs_bread, /* 11 */
23 no_sys, /* 12: not used */
24 no_sys, /* 13: not used */
25 no_sys, /* 14: not used */
26 fs_unmount, /* 15 */
27 fs_sync, /* 16 */
28 fs_new_driver, /* 17 */
29 no_sys, /* 18: not_used */
30 fs_read, /* 19 */
31 no_sys, /* 20: not used */
32 no_sys, /* 21: not used */
33 no_sys, /* 22: not used */
34 no_sys, /* 23: not used */
35 no_sys, /* 24: not used */
36 no_sys, /* 25: not used */
37 fs_lookup, /* 26 */
38 fs_mountpoint, /* 27 */
39 fs_readsuper, /* 28 */
40 no_sys, /* 29: not used */
41 no_sys, /* 30: not used */
42 fs_getdents, /* 31 */
43 fs_statvfs, /* 32 */