Changeset 27d293a in mainline for uspace/srv/console/gcons.c


Ignore:
Timestamp:
2007-12-31T16:46:43Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
215e375
Parents:
3115355
Message:

Rename IPC_M_AS_AREA_SEND to IPC_M_SHARE_OUT. Rename IPC_M_AS_AREA_RECV to
IPC_M_SHARE_IN. Provide user-friendly wrappers for these methods so that even
dummies can get it right. Some applications using simpler protocols still use
these methods directly.

File:
1 edited

Legend:

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

    r3115355 r27d293a  
    326326        if (rc)
    327327                goto exit;
    328         rc = async_req_3_0(fbphone, IPC_M_AS_AREA_SEND, (ipcarg_t) shm, 0,
    329             PROTO_READ);
     328        rc = ipc_share_out_send(fbphone, shm, PROTO_READ);
    330329        if (rc)
    331330                goto drop;
     
    388387        if (rc)
    389388                goto exit;
    390         rc = async_req_3_0(fbphone, IPC_M_AS_AREA_SEND, (ipcarg_t) shm, 0,
    391             PROTO_READ);
     389        rc = ipc_share_out_send(fbphone, shm, PROTO_READ);
    392390        if (rc)
    393391                goto drop;
Note: See TracChangeset for help on using the changeset viewer.