Changeset 38c706cc in mainline for uspace/app
- Timestamp:
- 2007-12-04T19:54:53Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6364d3c
- Parents:
- 90c35436
- Location:
- uspace/app/tester
- Files:
-
- 2 edited
-
devmap/devmap1.c (modified) (2 diffs)
-
ipc/register.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/devmap/devmap1.c
r90c35436 r38c706cc 91 91 } 92 92 /* 93 * device_phone = (int) IPC_GET_ARG 3(answer);93 * device_phone = (int) IPC_GET_ARG5(answer); 94 94 */ 95 95 printf("Connected to device.\n"); … … 150 150 async_set_client_connection(driver_client_connection); 151 151 152 ipc_connect_to_me(phone, 0, 0, &callback_phonehash);152 ipc_connect_to_me(phone, 0, 0, 0, &callback_phonehash); 153 153 /* 154 154 if (NULL == async_new_connection(callback_phonehash, 0, NULL, -
uspace/app/tester/ipc/register.c
r90c35436 r38c706cc 78 78 for (i = IPC_TEST_START; i < IPC_TEST_START + 10; i++) { 79 79 ipcarg_t phonead; 80 int res = ipc_connect_to_me(PHONE_NS, i, 0, &phonead);80 int res = ipc_connect_to_me(PHONE_NS, i, 0, 0, &phonead); 81 81 if (!res) 82 82 break;
Note:
See TracChangeset
for help on using the changeset viewer.
