Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2636 → Rev 2637

/trunk/uspace/app/tester/ipc/register.c
77,7 → 77,7
 
for (i = IPC_TEST_START; i < IPC_TEST_START + 10; i++) {
ipcarg_t phonead;
int res = ipc_connect_to_me(PHONE_NS, i, 0, &phonead);
int res = ipc_connect_to_me(PHONE_NS, i, 0, 0, &phonead);
if (!res)
break;
printf("Failed registering as %d..:%d\n", i, res);
/trunk/uspace/app/tester/devmap/devmap1.c
90,7 → 90,7
return -1;
}
/*
* device_phone = (int) IPC_GET_ARG3(answer);
* device_phone = (int) IPC_GET_ARG5(answer);
*/
printf("Connected to device.\n");
ipc_call_sync_1_0(device_phone, 1024, 1025);
149,7 → 149,7
 
async_set_client_connection(driver_client_connection);
 
ipc_connect_to_me(phone, 0, 0, &callback_phonehash);
ipc_connect_to_me(phone, 0, 0, 0, &callback_phonehash);
/*
if (NULL == async_new_connection(callback_phonehash, 0, NULL,
driver_client_connection)) {