Changeset 1035437 in mainline
- Timestamp:
- 2009-06-04T13:05:25Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8bfe48e
- Parents:
- c8b9f88
- Location:
- uspace/srv/console
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/console/console.c
rc8b9f88 r1035437 793 793 } 794 794 795 /* Disable kernel output to the console */ 796 __SYSCALL0(SYS_DEBUG_DISABLE_CONSOLE); 797 795 798 /* Initialize the screen */ 799 gcons_redraw_console(); 796 800 set_rgb_color(DEFAULT_FOREGROUND, DEFAULT_BACKGROUND); 797 801 screen_clear(); … … 812 816 printf(NAME ": HelenOS Console service\n"); 813 817 814 /* Disable kernel output to the console */ 815 __SYSCALL0(SYS_DEBUG_DISABLE_CONSOLE); 816 817 if (!console_init()) { 818 __SYSCALL0(SYS_DEBUG_ENABLE_CONSOLE); 818 if (!console_init()) 819 819 return -1; 820 }821 820 822 821 printf(NAME ": Accepting connections\n"); -
uspace/srv/console/gcons.c
rc8b9f88 r1035437 537 537 console_state[KERNEL_CONSOLE] = CONS_KERNEL; 538 538 539 gcons_redraw_console();539 vp_switch(console_vp); 540 540 } 541 541
Note:
See TracChangeset
for help on using the changeset viewer.