Subversion Repositories HelenOS-historic

Rev

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

Rev 1050 Rev 1072
Line 241... Line 241...
241
    ipc_call_slab = slab_cache_create("ipc_call",
241
    ipc_call_slab = slab_cache_create("ipc_call",
242
                      sizeof(call_t),
242
                      sizeof(call_t),
243
                      0,
243
                      0,
244
                      NULL, NULL, 0);
244
                      NULL, NULL, 0);
245
}
245
}
-
 
246
 
-
 
247
/** Cleans up all IPC communication of the given task
-
 
248
 *
-
 
249
 *
-
 
250
 */
-
 
251
void ipc_cleanup(task_t *task)
-
 
252
{
-
 
253
    /* Cancel all calls in my dispatch queue */
-
 
254
   
-
 
255
}