Changeset 1029d3d3 in mainline for console/console.c
- Timestamp:
- 2006-05-31T00:19:43Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3f695aad
- Parents:
- eaf34f7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
console/console.c
reaf34f7 r1029d3d3 112 112 keybuffer_push(&(connections[active_client].keybuffer), i); 113 113 /* 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 116 117 break; 117 118 default: 118 ipc_answer_fast(callid,ENOENT,0,0);119 retval = ENOENT; 119 120 } 121 ipc_answer_fast(callid, retval, 0, 0); 120 122 } 121 123 }
Note:
See TracChangeset
for help on using the changeset viewer.