Subversion Repositories HelenOS

Rev

Rev 2479 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2479 Rev 2618
Line 46... Line 46...
46
    do {
46
    do {
47
        c = getchar();
47
        c = getchar();
48
    } while (c < '2' || c > '9');
48
    } while (c < '2' || c > '9');
49
    phoneid = c - '0';
49
    phoneid = c - '0';
50
 
50
 
51
    ipc_call_async(phoneid, 2000, 0, (void *) msgid, callback, 1);
51
    ipc_call_async_0(phoneid, 2000, (void *) msgid, callback, 1);
52
    printf("Async sent - msg %d\n", msgid);
52
    printf("Async sent - msg %d\n", msgid);
53
    msgid++;
53
    msgid++;
54
   
54
   
55
    return NULL;
55
    return NULL;
56
}
56
}