Changeset 8e7c9fe in mainline for kernel/generic/src/syscall/syscall.c


Ignore:
Timestamp:
2014-09-12T03:45:25Z (10 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c53b58e
Parents:
3eb0c85 (diff), 105d8d6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

merge mainline changes

most usb changes were reverted. blink and usbmass were fixed
known problems:
ehci won't initialize
usbmast asserts on unmount (happens on mainline too)

File:
1 edited

Legend:

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

    r3eb0c85 r8e7c9fe  
    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. */
     
    192194       
    193195        /* Kernel console syscalls. */
    194         (syshandler_t) sys_debug_activate_console,
     196        (syshandler_t) sys_debug_console,
    195197       
    196198        (syshandler_t) sys_klog,
Note: See TracChangeset for help on using the changeset viewer.