Changeset 3fe00ee in mainline
- Timestamp:
- 2009-03-22T19:48:11Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8b48063
- Parents:
- dc033a1
- Location:
- uspace
- Files:
-
- 4 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/Makefile
rdc033a1 r3fe00ee 58 58 cmds/modules/sleep/ \ 59 59 cmds/modules/cp/ \ 60 cmds/modules/kcon/ \ 60 61 cmds/builtins/ \ 61 62 cmds/builtins/exit/\ … … 72 73 cmds/modules/sleep/sleep.c \ 73 74 cmds/modules/cp/cp.c \ 75 cmds/modules/kcon/kcon.c \ 74 76 cmds/builtins/exit/exit.c \ 75 77 cmds/builtins/cd/cd.c \ -
uspace/app/bdsh/cmds/modules/modules.h
rdc033a1 r3fe00ee 27 27 #include "sleep/entry.h" 28 28 #include "cp/entry.h" 29 #include "kcon/entry.h" 29 30 30 31 /* Each .def function fills the module_t struct with the individual name, entry … … 42 43 #include "sleep/sleep_def.h" 43 44 #include "cp/cp_def.h" 45 #include "kcon/kcon_def.h" 44 46 {NULL, NULL, NULL, NULL} 45 47 }; -
uspace/lib/libc/generic/console.c
rdc033a1 r3fe00ee 283 283 } 284 284 285 void console_kcon_enable(void) 286 { 287 int cons_phone = console_phone_get(true); 288 289 cbuffer_flush(); 290 async_msg_0(cons_phone, CONSOLE_KCON_ENABLE); 291 } 292 285 293 /** @} 286 294 */ -
uspace/lib/libc/include/console.h
rdc033a1 r3fe00ee 59 59 extern void console_cursor_visibility(int); 60 60 61 extern void console_kcon_enable(void); 62 61 63 #endif 62 64 -
uspace/lib/libc/include/ipc/console.h
rdc033a1 r3fe00ee 49 49 CONSOLE_SET_COLOR, 50 50 CONSOLE_SET_RGB_COLOR, 51 CONSOLE_CURSOR_VISIBILITY 51 CONSOLE_CURSOR_VISIBILITY, 52 CONSOLE_KCON_ENABLE 52 53 } console_request_t; 53 54 -
uspace/srv/console/console.c
rdc033a1 r3fe00ee 626 626 arg4 = ev.c; 627 627 break; 628 case CONSOLE_KCON_ENABLE: 629 change_console(KERNEL_CONSOLE); 630 break; 628 631 } 629 632 ipc_answer_4(callid, EOK, arg1, arg2, arg3, arg4);
Note:
See TracChangeset
for help on using the changeset viewer.