Subversion Repositories HelenOS

Rev

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

Rev 4343 Rev 4345
Line 60... Line 60...
60
loader_t *loader_connect(void)
60
loader_t *loader_connect(void)
61
{
61
{
62
    loader_t *ldr;
62
    loader_t *ldr;
63
    int phone_id;
63
    int phone_id;
64
 
64
 
65
    phone_id = ipc_connect_me_to(PHONE_NS, SERVICE_LOAD, 0, 0);
65
    phone_id = ipc_connect_me_to_blocking(PHONE_NS, SERVICE_LOAD, 0, 0);
66
    if (phone_id < 0)
66
    if (phone_id < 0)
67
        return NULL;
67
        return NULL;
68
 
68
 
69
    ldr = malloc(sizeof(loader_t));
69
    ldr = malloc(sizeof(loader_t));
70
    if (ldr == NULL)
70
    if (ldr == NULL)