Changeset 3c22f70 in mainline for uspace/srv
- 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
- Location:
- uspace/srv/hid
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/adb_mouse/adb_dev.c
r11bb813 r3c22f70 68 68 69 69 /* NB: The callback connection is slotted for removal */ 70 sysarg_t taskhash; 70 71 sysarg_t phonehash; 71 if (ipc_connect_to_me(dev_phone, 0, 0, 0, NULL, &phonehash) != 0) {72 if (ipc_connect_to_me(dev_phone, 0, 0, 0, &taskhash, &phonehash) != 0) { 72 73 printf(NAME ": Failed to create callback from device\n"); 73 74 return false; 74 75 } 75 76 76 async_new_connection( phonehash, 0, NULL, adb_dev_events);77 async_new_connection(taskhash, phonehash, 0, NULL, adb_dev_events); 77 78 78 79 return 0; -
uspace/srv/hid/char_mouse/chardev.c
r11bb813 r3c22f70 70 70 71 71 /* NB: The callback connection is slotted for removal */ 72 sysarg_t taskhash; 72 73 sysarg_t phonehash; 73 if (ipc_connect_to_me(dev_phone, 0, 0, 0, NULL, &phonehash) != 0) {74 if (ipc_connect_to_me(dev_phone, 0, 0, 0, &taskhash, &phonehash) != 0) { 74 75 printf(NAME ": Failed to create callback from device\n"); 75 76 return false; 76 77 } 77 78 78 async_new_connection( phonehash, 0, NULL, chardev_events);79 async_new_connection(taskhash, phonehash, 0, NULL, chardev_events); 79 80 80 81 return 0; -
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 -
uspace/srv/hid/kbd/port/adb.c
r11bb813 r3c22f70 71 71 72 72 /* NB: The callback connection is slotted for removal */ 73 sysarg_t taskhash; 73 74 sysarg_t phonehash; 74 if (ipc_connect_to_me(dev_phone, 0, 0, 0, NULL, &phonehash) != 0) {75 if (ipc_connect_to_me(dev_phone, 0, 0, 0, &taskhash, &phonehash) != 0) { 75 76 printf(NAME ": Failed to create callback from device\n"); 76 77 return false; 77 78 } 78 79 79 async_new_connection( phonehash, 0, NULL, kbd_port_events);80 async_new_connection(taskhash, phonehash, 0, NULL, kbd_port_events); 80 81 81 82 return 0; -
uspace/srv/hid/kbd/port/chardev.c
r11bb813 r3c22f70 91 91 92 92 /* NB: The callback connection is slotted for removal */ 93 sysarg_t taskhash; 93 94 sysarg_t phonehash; 94 if (ipc_connect_to_me(dev_phone, 0, 0, 0, NULL, &phonehash) != 0) {95 if (ipc_connect_to_me(dev_phone, 0, 0, 0, &taskhash, &phonehash) != 0) { 95 96 printf(NAME ": Failed to create callback from device\n"); 96 97 return -1; 97 98 } 98 99 99 async_new_connection( phonehash, 0, NULL, kbd_port_events);100 async_new_connection(taskhash, phonehash, 0, NULL, kbd_port_events); 100 101 101 102 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.