Changeset ebfabf6 in mainline for uspace/srv/console/console.c
- Timestamp:
- 2009-04-24T20:33:49Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ccd1a14
- Parents:
- 10270a8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/console/console.c
r10270a8 rebfabf6 142 142 } 143 143 144 static void screen_ grab(void)145 { 146 ipc_call_sync_0_0(fb_info.phone, FB_SCREEN_ GRAB);147 } 148 149 static void screen_re linquish(void)150 { 151 ipc_call_sync_0_0(fb_info.phone, FB_SCREEN_RE LINQUISH);144 static void screen_yield(void) 145 { 146 ipc_call_sync_0_0(fb_info.phone, FB_SCREEN_YIELD); 147 } 148 149 static void screen_reclaim(void) 150 { 151 ipc_call_sync_0_0(fb_info.phone, FB_SCREEN_RECLAIM); 152 152 } 153 153 … … 341 341 curs_hide_sync(); 342 342 gcons_in_kernel(); 343 screen_ relinquish();343 screen_yield(); 344 344 async_serialize_end(); 345 345 … … 356 356 357 357 if (active_console == KERNEL_CONSOLE) { 358 screen_ grab();358 screen_reclaim(); 359 359 gcons_redraw_console(); 360 360 }
Note:
See TracChangeset
for help on using the changeset viewer.