Changeset 3c22f70 in mainline for uspace/srv/hid/console/console.c
- Timestamp:
- 2011-01-24T00:14:13Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8c9b742
- Parents:
- 11bb813
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/console/console.c
r11bb813 r3c22f70 726 726 727 727 /* NB: The callback connection is slotted for removal */ 728 sysarg_t taskhash; 728 729 sysarg_t phonehash; 729 if (ipc_connect_to_me(kbd_phone, SERVICE_CONSOLE, 0, 0, NULL,730 if (ipc_connect_to_me(kbd_phone, SERVICE_CONSOLE, 0, 0, &taskhash, 730 731 &phonehash) != 0) { 731 732 printf(NAME ": Failed to create callback from input device\n"); … … 733 734 } 734 735 735 async_new_connection( phonehash, 0, NULL, keyboard_events);736 async_new_connection(taskhash, phonehash, 0, NULL, keyboard_events); 736 737 737 738 /* Connect to mouse device */ … … 750 751 } 751 752 752 if (ipc_connect_to_me(mouse_phone, SERVICE_CONSOLE, 0, 0, NULL,753 if (ipc_connect_to_me(mouse_phone, SERVICE_CONSOLE, 0, 0, &taskhash, 753 754 &phonehash) != 0) { 754 755 printf(NAME ": Failed to create callback from mouse device\n"); … … 757 758 } 758 759 759 async_new_connection( phonehash, 0, NULL, mouse_events);760 async_new_connection(taskhash, phonehash, 0, NULL, mouse_events); 760 761 skip_mouse: 761 762
Note:
See TracChangeset
for help on using the changeset viewer.