Changeset 27d293a in mainline for uspace/srv/console/console.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/console.c

    r3115355 r27d293a  
    538538            PROTO_READ | PROTO_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, 0, 0);
    539539        if (!interbuffer) {
    540                 if (async_req_3_0(fb_info.phone, IPC_M_AS_AREA_SEND,
    541                     (ipcarg_t) interbuffer, 0, AS_AREA_READ) != 0) {
     540                if (ipc_share_out_send(fb_info.phone, interbuffer,
     541                    AS_AREA_READ) != EOK) {
    542542                        munmap(interbuffer,
    543543                            sizeof(keyfield_t) * fb_info.cols * fb_info.rows);
Note: See TracChangeset for help on using the changeset viewer.