Changeset ea5f46d in mainline for contrib/arch/uspace/srv/bd/bd.adl


Ignore:
Timestamp:
2009-09-15T16:07:26Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2a70672
Parents:
1993f9a
Message:

hierarchical composition of components
(tmpfs, fat, devfs are logical subcomponents of vfs, kbd and fb are subcomponents of console, rd is subcomponent of bd)

File:
1 moved

Legend:

Unmodified
Added
Removed
  • contrib/arch/uspace/srv/bd/bd.adl

    r1993f9a rea5f46d  
    1 interface block_device extends service {
     1interface bd extends service {
    22                /* Establish connection */
    33                ipcarg_t ipc_m_connect_me_to(void);
     
    1818                ipcarg_t ipc_m_phone_hungup(void);
    1919        protocol:
    20                 [block_device.bp]
     20                [bd.bp]
    2121};
     22
     23architecture bd {
     24        inst rd rd;
     25       
     26        [/uspace/lib/libc/subsume%rd]
     27       
     28        delegate bd to rd:bd;
     29       
     30        subsume rd:ns to ns;
     31        subsume rd:devmap to devmap;
     32};
Note: See TracChangeset for help on using the changeset viewer.