Changeset 6568225 in mainline
- Timestamp:
- 2009-05-03T09:01:19Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0b6d70d
- Parents:
- 8e7afdbc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/console/console.c
r8e7afdbc r6568225 504 504 ipc_answer_0(callid, EINVAL); 505 505 ipc_answer_0(rid, EINVAL); 506 return; 506 507 } 507 508 … … 510 511 511 512 (void) ipc_data_write_finalize(callid, cwrite_buf, size); 513 514 async_serialize_start(); 512 515 513 516 off = 0; … … 516 519 write_char(consnum, ch); 517 520 } 521 522 async_serialize_end(); 518 523 519 524 gcons_notify_char(consnum); … … 576 581 break; 577 582 case CONSOLE_WRITE: 583 async_serialize_end(); 578 584 cons_write(consnum, callid, &call); 585 async_serialize_start(); 579 586 continue; 580 587 case CONSOLE_CLEAR:
Note:
See TracChangeset
for help on using the changeset viewer.