Changeset 4e4052b in mainline
- Timestamp:
- 2008-07-09T08:16:51Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5719f6d
- Parents:
- f93f168
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tetris/input.c
rf93f168 r4e4052b 97 97 static ipc_call_t charcall; 98 98 ipcarg_t rc; 99 int cons_phone; 99 100 100 101 /* … … 111 112 112 113 if (!lastchar) { 113 if (!getchar_inprog) 114 getchar_inprog = async_send_2(1,CONSOLE_GETCHAR,0,0,&charcall); 114 if (!getchar_inprog) { 115 cons_phone = get_cons_phone(); 116 getchar_inprog = async_send_2(cons_phone, 117 CONSOLE_GETCHAR, 0, 0, &charcall); 118 } 115 119 if (!s) 116 120 async_wait_for(getchar_inprog, &rc);
Note:
See TracChangeset
for help on using the changeset viewer.