Changes in contrib/arch/uspace/srv/console/console.adl [82cf692:afe34be] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/arch/uspace/srv/console/console.adl
r82cf692 rafe34be 48 48 requires: 49 49 [/uspace/lib/libc/requires] 50 ns ns; 51 devmap_driver devmap_driver; 52 sys_console sys_console; 50 53 kbd kbd; 51 54 fb fb; 52 ns ns; 53 sys_console sys_console; 55 initialization: 56 !ns.ipc_m_connect_me_to /* kbd */ ; 57 !kbd.ipc_m_connect_to_me ; 58 !ns.ipc_m_connect_me_to /* fb */ ; 59 [/uspace/lib/libc/fnc.devmap_driver_register] ; 60 !fb.get_resolution ; 61 ( 62 [fnc.vp_create] + 63 [fnc.vp_switch] 64 )* ; 65 [fnc.make_pixmap]* ; 66 [fnc.make_anim] ; 67 [fnc.vp_switch] ; 68 !fb.flush ; 69 !fb.get_csize ; 70 !fb.get_color_cap ; 71 !fb.ipc_m_share_out ; 72 [/uspace/lib/libc/fnc.devmap_device_register]* ; 73 !sys_console.sys_debug_disable_console ; 74 [fnc.gcons_redraw_console] ; 75 [fnc.set_rgb_color] ; 76 [fnc.screen_clear] ; 77 [fnc.curs_goto] ; 78 [fnc.curs_visibility] 54 79 protocol: 55 [/uspace/lib/libc/protocol] | 56 [console_server.bp] 80 [/uspace/lib/libc/protocol] 57 81 }; 58 82 … … 68 92 69 93 delegate console to ui_dispatcher:console; 94 delegate kbd to kbd:kbd; 95 delegate fb to fb:fb; 70 96 71 97 [/uspace/lib/libc/subsume%ui_dispatcher] … … 74 100 75 101 subsume ui_dispatcher:ns to ns; 102 subsume ui_dispatcher:devmap_driver to devmap_driver; 76 103 subsume ui_dispatcher:sys_console to sys_console; 77 104
Note:
See TracChangeset
for help on using the changeset viewer.