Changeset 9934f7d in mainline for uspace/srv/hid/console/console.c
- Timestamp:
- 2011-06-13T19:53:48Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a07a454
- Parents:
- 43ac0cc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/console/console.c
r43ac0cc r9934f7d 427 427 428 428 /** Handler for keyboard */ 429 static void keyboard_events(ipc_callid_t iid, ipc_call_t *icall )429 static void keyboard_events(ipc_callid_t iid, ipc_call_t *icall, void *arg) 430 430 { 431 431 /* Ignore parameters, the connection is already opened */ … … 474 474 475 475 /** Handler for mouse events */ 476 static void mouse_events(ipc_callid_t iid, ipc_call_t *icall )476 static void mouse_events(ipc_callid_t iid, ipc_call_t *icall, void *arg) 477 477 { 478 478 /* Ignore parameters, the connection is already opened */ … … 597 597 598 598 /** Default thread for new connections */ 599 static void client_connection(ipc_callid_t iid, ipc_call_t *icall )599 static void client_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg) 600 600 { 601 601 console_t *cons = NULL; … … 759 759 if (client_receiver != NULL) 760 760 async_new_connection(task_hash, phone_hash, phone_hash, NULL, 761 client_receiver );761 client_receiver, NULL); 762 762 763 763 if (hash != NULL)
Note:
See TracChangeset
for help on using the changeset viewer.