Changeset 8820544 in mainline for kernel/generic/src/syscall/syscall.c


Ignore:
Timestamp:
2014-08-16T00:02:04Z (11 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
35b8bfe, 8cd680c
Parents:
83f29e0
Message:

support for kernel notification multiplexing in the async framework

  • rename SYS_EVENT_* and SYS_IRQ_* syscalls to unify the terminology
  • add SYS_IPC_EVENT_UNSUBSCRIBE
  • remove IRQ handler multiplexing from DDF, the generic mechanism replaces it (unfortunatelly the order of arguments used by interrupt_handler_t needs to be permutated to align with the async framework conventions)
File:
1 edited

Legend:

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

    r83f29e0 r8820544  
    165165       
    166166        /* Event notification syscalls. */
    167         (syshandler_t) sys_event_subscribe,
    168         (syshandler_t) sys_event_unmask,
     167        (syshandler_t) sys_ipc_event_subscribe,
     168        (syshandler_t) sys_ipc_event_unsubscribe,
     169        (syshandler_t) sys_ipc_event_unmask,
    169170       
    170171        /* Capabilities related syscalls. */
     
    180181        (syshandler_t) sys_iospace_enable,
    181182        (syshandler_t) sys_iospace_disable,
    182         (syshandler_t) sys_irq_register,
    183         (syshandler_t) sys_irq_unregister,
     183       
     184        (syshandler_t) sys_ipc_irq_subscribe,
     185        (syshandler_t) sys_ipc_irq_unsubscribe,
    184186       
    185187        /* Sysinfo syscalls. */
Note: See TracChangeset for help on using the changeset viewer.