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

Last change on this file was f1380b7, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 7 years ago

style: Remove trailing whitespace on _all_ lines, including empty ones, remaining files.

  • Property mode set to 100644
File size: 712 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 tentative {
9 [/uspace/lib/block/fnc.block_init%rd]
10 }
11 } +
12
13 ?mount {
14 [/uspace/lib/libfs/fnc.libfs_mount]
15 } +
16
17 ?lookup {
18 [/uspace/lib/libfs/fnc.libfs_lookup]
19 } +
20
21 ?open_node {
22 [/uspace/lib/libfs/fnc.libfs_open_node]
23 } +
24
25 ?read {
26 tentative {
27 ?ipc_m_data_read /* payload */
28 }
29 } +
30
31 ?write {
32 tentative {
33 ?ipc_m_data_write /* payload */
34 }
35 } +
36
37 ?stat {
38 [/uspace/lib/libfs/fnc.libfs_stat]
39 } +
40
41 ?truncate +
42 ?close +
43 ?destroy +
44 ?sync
45 )* ;
46 ?ipc_m_phone_hungup
47)* ;
48!vfs.ipc_m_phone_hungup
Note: See TracBrowser for help on using the repository browser.