Changes in uspace/srv/hid/fb/serial_console.c [ffa2c8ef:4f14e1f8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/fb/serial_console.c
rffa2c8ef r4f14e1f8 318 318 319 319 if (client_connected) { 320 ipc_answer_0(iid, ELIMIT);320 async_answer_0(iid, ELIMIT); 321 321 return; 322 322 } 323 323 324 324 client_connected = 1; 325 ipc_answer_0(iid, EOK);325 async_answer_0(iid, EOK); 326 326 327 327 /* Clear the terminal, set scrolling region … … 347 347 case IPC_M_PHONE_HUNGUP: 348 348 client_connected = 0; 349 ipc_answer_0(callid, EOK);349 async_answer_0(callid, EOK); 350 350 351 351 /* Exit thread */ … … 406 406 break; 407 407 case FB_GET_CSIZE: 408 ipc_answer_2(callid, EOK, scr_width, scr_height);408 async_answer_2(callid, EOK, scr_width, scr_height); 409 409 continue; 410 410 case FB_GET_COLOR_CAP: 411 ipc_answer_1(callid, EOK, color ? FB_CCAP_INDEXED :411 async_answer_1(callid, EOK, color ? FB_CCAP_INDEXED : 412 412 FB_CCAP_STYLE); 413 413 continue; … … 477 477 retval = ENOENT; 478 478 } 479 ipc_answer_0(callid, retval);479 async_answer_0(callid, retval); 480 480 } 481 481 }
Note:
See TracChangeset
for help on using the changeset viewer.