Changeset 4198f9c3 in mainline for uspace/srv/console/console.c


Ignore:
Timestamp:
2009-06-28T13:43:15Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
852b801
Parents:
6408be3
Message:

Separate the VFS input and output protocols.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/console/console.c

    r6408be3 r4198f9c3  
    552552                                gcons_notify_disconnect(cons->index);
    553553                        return;
    554                 case VFS_READ:
     554                case VFS_OUT_READ:
    555555                        async_serialize_end();
    556556                        cons_read(cons, callid, &call);
    557557                        async_serialize_start();
    558558                        continue;
    559                 case VFS_WRITE:
     559                case VFS_OUT_WRITE:
    560560                        async_serialize_end();
    561561                        cons_write(cons, callid, &call);
    562562                        async_serialize_start();
    563563                        continue;
    564                 case VFS_SYNC:
     564                case VFS_OUT_SYNC:
    565565                        fb_pending_flush();
    566566                        if (cons == active_console) {
Note: See TracChangeset for help on using the changeset viewer.