Changeset 6b89868 in mainline for contrib/bp/srv/console/console.bp
- Timestamp:
- 2009-09-08T14:38:59Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 262cd01, 9b11daef
- Parents:
- e742429
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/bp/srv/console/console.bp
re742429 r6b89868 22 22 [curs_visibility] ; 23 23 ( 24 ? IPC_M_CONNECT_ME_TO ;24 ?console.IPC_M_CONNECT_ME_TO ; 25 25 [gcons_notify_connect] ; 26 26 ( 27 ? VFS_OUT_READ {27 ?console.VFS_OUT_READ { 28 28 [cons_read] 29 29 } + 30 30 31 ? VFS_OUT_WRITE {31 ?console.VFS_OUT_WRITE { 32 32 [cons_write] 33 33 } + 34 34 35 ? VFS_OUT_SYNC {35 ?console.VFS_OUT_SYNC { 36 36 [fb_pending_flush] ; 37 37 ( … … 44 44 } + 45 45 46 ? CONSOLE_CLEAR {46 ?console.CONSOLE_CLEAR { 47 47 !fb.FB_FLUSH + 48 48 NULL 49 49 } + 50 50 51 ? CONSOLE_GOTO {51 ?console.CONSOLE_GOTO { 52 52 !fb.CURS_GOTO + 53 53 NULL 54 54 } + 55 55 56 ? CONSOLE_GET_SIZE +56 ?console.CONSOLE_GET_SIZE + 57 57 58 ? CONSOLE_GET_COLOR_CAP +58 ?console.CONSOLE_GET_COLOR_CAP + 59 59 60 ? CONSOLE_SET_STYLE {60 ?console.CONSOLE_SET_STYLE { 61 61 [fb_pending_flush] ; 62 62 ( … … 66 66 } + 67 67 68 ? CONSOLE_SET_COLOR {68 ?console.CONSOLE_SET_COLOR { 69 69 [fb_pending_flush] ; 70 70 ( … … 74 74 } + 75 75 76 ? CONSOLE_SET_RGB_COLOR {76 ?console.CONSOLE_SET_RGB_COLOR { 77 77 [fb_pending_flush] ; 78 78 ( … … 82 82 } + 83 83 84 ? CONSOLE_CURSOR_VISIBILITY {84 ?console.CONSOLE_CURSOR_VISIBILITY { 85 85 [fb_pending_flush] ; 86 86 ( … … 90 90 } + 91 91 92 ? CONSOLE_GET_EVENT +92 ?console.CONSOLE_GET_EVENT + 93 93 94 ? CONSOLE_KCON_ENABLE94 ?console.CONSOLE_KCON_ENABLE 95 95 96 96 )* ; 97 97 98 ? IPC_M_PHONE_HUNGUP {98 ?console.IPC_M_PHONE_HUNGUP { 99 99 [gcons_notify_disconnect] 100 100 }
Note:
See TracChangeset
for help on using the changeset viewer.