Changeset 1993f9a in mainline for contrib/arch/uspace/srv/console/console.bp
- Timestamp:
- 2009-09-15T13:45:23Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ea5f46d
- Parents:
- ec8bab59
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/arch/uspace/srv/console/console.bp
rec8bab59 r1993f9a 2 2 !kbd.IPC_CONNECT_TO_ME ; 3 3 !ns.IPC_CONNECT_ME_TO /* fb */ ; 4 [ devmap_driver_register] ;4 [/uspace/lib/libc/fnc.devmap_driver_register] ; 5 5 !fb.FB_GET_RESOLUTION ; 6 6 ( 7 [ vp_create] +8 [ vp_switch]7 [fnc.vp_create] + 8 [fnc.vp_switch] 9 9 )* ; 10 [ make_pixmap]* ;11 [ make_anim] ;12 [ vp_switch] ;10 [fnc.make_pixmap]* ; 11 [fnc.make_anim] ; 12 [fnc.vp_switch] ; 13 13 !fb.FB_FLUSH ; 14 14 !fb.FB_GET_CSIZE ; 15 15 !fb.FB_GET_COLOR_CAP ; 16 16 !fb.IPC_M_SHARE_OUT ; 17 [ devmap_device_register]* ;18 [ gcons_redraw_console] ;19 [ set_rgb_color] ;20 [ screen_clear] ;21 [ curs_goto] ;22 [ curs_visibility] ;17 [/uspace/lib/libc/fnc.devmap_device_register]* ; 18 [fnc.gcons_redraw_console] ; 19 [fnc.set_rgb_color] ; 20 [fnc.screen_clear] ; 21 [fnc.curs_goto] ; 22 [fnc.curs_visibility] ; 23 23 ( 24 24 ?console.IPC_M_CONNECT_ME_TO ; 25 [ gcons_notify_connect] ;25 [fnc.gcons_notify_connect] ; 26 26 ( 27 27 ?console.VFS_OUT_READ { 28 [ cons_read]28 [fnc.cons_read] 29 29 } + 30 30 31 31 ?console.VFS_OUT_WRITE { 32 [ cons_write]32 [fnc.cons_write] 33 33 } + 34 34 35 35 ?console.VFS_OUT_SYNC { 36 [f b_pending_flush] ;36 [fnc.fb_pending_flush] ; 37 37 ( 38 38 ( 39 39 !fb.FB_FLUSH ; 40 [ curs_goto]40 [fnc.curs_goto] 41 41 ) + 42 42 NULL … … 59 59 60 60 ?console.CONSOLE_SET_STYLE { 61 [f b_pending_flush] ;61 [fnc.fb_pending_flush] ; 62 62 ( 63 [ set_style] +63 [fnc.set_style] + 64 64 NULL 65 65 ) … … 67 67 68 68 ?console.CONSOLE_SET_COLOR { 69 [f b_pending_flush] ;69 [fnc.fb_pending_flush] ; 70 70 ( 71 [ set_color] +71 [fnc.set_color] + 72 72 NULL 73 73 ) … … 75 75 76 76 ?console.CONSOLE_SET_RGB_COLOR { 77 [f b_pending_flush] ;77 [fnc.fb_pending_flush] ; 78 78 ( 79 [ set_rgb_color] +79 [fnc.set_rgb_color] + 80 80 NULL 81 81 ) … … 83 83 84 84 ?console.CONSOLE_CURSOR_VISIBILITY { 85 [f b_pending_flush] ;85 [fnc.fb_pending_flush] ; 86 86 ( 87 [ curs_visibility] +87 [fnc.curs_visibility] + 88 88 NULL 89 89 ) … … 97 97 98 98 ?console.IPC_M_PHONE_HUNGUP { 99 [ gcons_notify_disconnect]99 [fnc.gcons_notify_disconnect] 100 100 } 101 101 )*
Note:
See TracChangeset
for help on using the changeset viewer.