Subversion Repositories HelenOS

Rev

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

Rev 1787 Rev 1923
Line 438... Line 438...
438
        ipc_call_free(call);
438
        ipc_call_free(call);
439
    }
439
    }
440
}
440
}
441
 
441
 
442
 
442
 
443
/** Initilize ipc subsystem */
443
/** Initilize IPC subsystem */
444
void ipc_init(void)
444
void ipc_init(void)
445
{
445
{
446
    ipc_call_slab = slab_cache_create("ipc_call",
446
    ipc_call_slab = slab_cache_create("ipc_call", sizeof(call_t), 0, NULL, NULL, 0);
447
                      sizeof(call_t),
-
 
448
                      0,
-
 
449
                      NULL, NULL, 0);
-
 
450
    ipc_irq_make_table(IRQ_COUNT);
-
 
451
}
447
}
452
 
448
 
453
 
449
 
454
/** Kconsole - list answerbox contents */
450
/** Kconsole - list answerbox contents */
455
void ipc_print_task(task_id_t taskid)
451
void ipc_print_task(task_id_t taskid)