Rev 2479 | Rev 2785 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2479 | Rev 2635 | ||
|---|---|---|---|
| Line 44... | Line 44... | ||
| 44 | svc = IPC_TEST_START + c - '0'; |
44 | svc = IPC_TEST_START + c - '0'; |
| 45 | if (svc == myservice) |
45 | if (svc == myservice) |
| 46 | return "Currently cannot connect to myself, update test"; |
46 | return "Currently cannot connect to myself, update test"; |
| 47 | 47 | ||
| 48 | printf("Connecting to %d..", svc); |
48 | printf("Connecting to %d..", svc); |
| 49 | phid = ipc_connect_me_to(PHONE_NS, svc, 0); |
49 | phid = ipc_connect_me_to(PHONE_NS, svc, 0, 0); |
| 50 | if (phid > 0) { |
50 | if (phid > 0) { |
| 51 | printf("phoneid: %d\n", phid); |
51 | printf("phoneid: %d\n", phid); |
| 52 | phones[phid] = 1; |
52 | phones[phid] = 1; |
| 53 | } else |
53 | } else |
| 54 | return "Error"; |
54 | return "Error"; |