Changeset 1029d3d3 in mainline for console/console.c


Ignore:
Timestamp:
2006-05-31T00:19:43Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3f695aad
Parents:
eaf34f7
Message:

Fix bad answering in console.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • console/console.c

    reaf34f7 r1029d3d3  
    112112                        keybuffer_push(&(connections[active_client].keybuffer), i);
    113113                        /* Send it to first FB, DEBUG */
    114                         ipc_call_async_2(connections[0].vfb_phone, FB_PUTCHAR, 0, IPC_GET_ARG1(call),NULL,NULL);
    115                         ipc_answer_fast(callid, 0, 0, 0);
     114//                      ipc_call_async_2(connections[0].vfb_phone, FB_PUTCHAR, 0, IPC_GET_ARG1(call),NULL,NULL);
     115                        ipc_call_sync_2(connections[0].vfb_phone, FB_PUTCHAR, 0, IPC_GET_ARG1(call),NULL,NULL);
     116
    116117                        break;
    117118                default:
    118                         ipc_answer_fast(callid,ENOENT,0,0);
     119                        retval = ENOENT;
    119120                }               
     121                ipc_answer_fast(callid, retval, 0, 0);
    120122        }
    121123}
Note: See TracChangeset for help on using the changeset viewer.