source: mainline/contrib/arch/uspace/srv/fs/fat/fat.bp@ 810860a

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 810860a was cf7b3e0, checked in by Martin Decky <martin@…>, 16 years ago

various fixes and cleanup

  • Property mode set to 100644
File size: 662 bytes
Line 
1!ns.ipc_m_connect_me_to /* vfs */ ;
2[/uspace/lib/libfs/fnc.fs_register] ;
3(
4 ?ipc_m_connect_me_to ;
5 (
6 ?mounted {
7 ?ipc_m_data_write /* mount options */
8 } +
9
10 ?mount {
11 [/uspace/lib/libfs/fnc.libfs_mount]
12 } +
13
14 ?lookup {
15 [/uspace/lib/libfs/fnc.libfs_lookup]
16 } +
17
18 ?open_node {
19 [/uspace/lib/libfs/fnc.libfs_open_node]
20 } +
21
22 ?read {
23 tentative {
24 ?ipc_m_data_read /* payload */
25 }
26 } +
27
28 ?write {
29 tentative {
30 ?ipc_m_data_write /* payload */
31 }
32 } +
33
34 ?stat {
35 [/uspace/lib/libfs/fnc.libfs_stat]
36 } +
37
38 ?truncate +
39 ?close +
40 ?destroy +
41 ?sync
42 )* ;
43 ?ipc_m_phone_hungup
44)* ;
45!vfs.ipc_m_phone_hungup
Note: See TracBrowser for help on using the repository browser.