Rev 3 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2 | pj | 1 | /* |
2 | * Project: S.Ha.R.K. |
||
3 | * |
||
4 | * Coordinators: |
||
5 | * Giorgio Buttazzo <giorgio@sssup.it> |
||
6 | * Paolo Gai <pj@gandalf.sssup.it> |
||
7 | * |
||
8 | * Authors : |
||
9 | * Paolo Gai <pj@gandalf.sssup.it> |
||
10 | * Massimiliano Giorgi <massy@gandalf.sssup.it> |
||
11 | * Luca Abeni <luca@gandalf.sssup.it> |
||
12 | * (see the web pages for full authors list) |
||
13 | * |
||
14 | * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy) |
||
15 | * |
||
16 | * http://www.sssup.it |
||
17 | * http://retis.sssup.it |
||
18 | * http://shark.sssup.it |
||
19 | */ |
||
20 | |||
21 | |||
22 | #ifndef __SYS_MOUNT_H__ |
||
23 | #define __SYS_MOUNT_H__ |
||
24 | |||
25 | #include <features.h> |
||
26 | |||
27 | #include <sys/types.h> |
||
28 | #include <fs/mount.h> |
||
29 | #include <fs/fsind.h> |
||
80 | pj | 30 | #include "ll/sys/cdefs.h" |
2 | pj | 31 | |
80 | pj | 32 | __BEGIN_DECLS |
33 | |||
2 | pj | 34 | dev_t fdevice __P ((char *device_name)); |
35 | |||
36 | int mount __P ((dev_t device, u_int8_t fsind, |
||
37 | char *where, struct mount_opts *options)); |
||
38 | |||
39 | int umount __P ((dev_t device)); |
||
40 | |||
80 | pj | 41 | __END_DECLS |
2 | pj | 42 | #endif |