Changeset 67c708e in mainline


Ignore:
Timestamp:
2009-08-26T13:47:44Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6c3d54e
Parents:
52ff7699
Message:

restructure protocols to respect the same hierarchy as tasks in the source tree

Location:
contrib/bp
Files:
10 added
13 moved

Legend:

Unmodified
Added
Removed
  • contrib/bp/srv/fs/devfs/devfs.bp

    r52ff7699 r67c708e  
    1 [devmap_get_phone] ;
     1[../../../lib/libc/devmap_get_phone] ;
    22!ns.IPC_M_CONNECT_ME_TO /* vfs */ ;
    3 [fs_register] ;
     3[../../../lib/libfs/fs_register] ;
    44(
    55        ?IPC_M_CONNECT_ME_TO ;
     
    1313                ?VFS_OUT_LOOKUP {
    1414                        (
    15                                 [devmap_device_get_handle] ;
    16                                 [devmap_device_connect]
     15                                [../../../lib/libc/devmap_device_get_handle] ;
     16                                [../../../lib/libc/devmap_device_connect]
    1717                        ) +
    1818                        NULL
     
    2626                                ) +
    2727                                (
    28                                         [devmap_device_get_count] ;
    29                                         [devmap_device_get_devices]
     28                                        [../../../lib/libc/devmap_device_get_count] ;
     29                                        [../../../lib/libc/devmap_device_get_devices]
    3030                                )
    3131                        }
     
    5151               
    5252                ?VFS_OUT_OPEN_NODE {
    53                         [devmap_device_connect] +
     53                        [../../../lib/libc/devmap_device_connect] +
    5454                        NULL
    5555                } +
  • contrib/bp/srv/fs/tmpfs/tmpfs.bp

    r52ff7699 r67c708e  
    11!ns.IPC_M_CONNECT_ME_TO /* vfs */ ;
    2 [fs_register] ;
     2[../../../lib/libfs/fs_register] ;
    33(
    44        ?IPC_M_CONNECT_ME_TO ;
     
    99               
    1010                ?VFS_OUT_MOUNT {
    11                         [libfs_mount]
     11                        [../../../lib/libfs/libfs_mount]
    1212                } +
    1313               
    1414                ?VFS_OUT_LOOKUP {
    15                         [libfs_lookup]
     15                        [../../../lib/libfs/libfs_lookup]
    1616                } +
    1717               
     
    3131               
    3232                ?VFS_OUT_OPEN_NODE {
    33                         [libfs_open_node]
     33                        [../../../lib/libfs/libfs_open_node]
    3434                } +
    3535               
    3636                ?VFS_OUT_STAT {
    37                         [libfs_stat]
     37                        [../../../lib/libfs/libfs_stat]
    3838                } +
    3939               
Note: See TracChangeset for help on using the changeset viewer.