Changeset 2b017ba in mainline for kernel/generic/src/ipc/ipc.c


Ignore:
Timestamp:
2006-10-16T20:51:55Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5f9b4d9a
Parents:
e3890b3f
Message:

Replace the old IRQ dispatcher and IPC notifier with new implementation.
Note that all architectures except for sparc64 are now broken
and don't even compile.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ipc/ipc.c

    re3890b3f r2b017ba  
    441441
    442442
    443 /** Initilize ipc subsystem */
     443/** Initilize IPC subsystem */
    444444void ipc_init(void)
    445445{
    446         ipc_call_slab = slab_cache_create("ipc_call",
    447                                           sizeof(call_t),
    448                                           0,
    449                                           NULL, NULL, 0);
    450         ipc_irq_make_table(IRQ_COUNT);
     446        ipc_call_slab = slab_cache_create("ipc_call", sizeof(call_t), 0, NULL, NULL, 0);
    451447}
    452448
Note: See TracChangeset for help on using the changeset viewer.