Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/event.c

    r8820544 r9d58539  
    3838
    3939#include <libc.h>
    40 #include <ipc/event.h>
     40#include <event.h>
    4141
    42 /** Subscribe to event notifications.
     42/** Subscribe event notifications.
    4343 *
    4444 * @param evno    Event type to subscribe.
     
    4848 *
    4949 */
    50 int ipc_event_subscribe(event_type_t evno, sysarg_t imethod)
     50int event_subscribe(event_type_t evno, sysarg_t imethod)
    5151{
    52         return __SYSCALL2(SYS_IPC_EVENT_SUBSCRIBE, (sysarg_t) evno,
     52        return __SYSCALL2(SYS_EVENT_SUBSCRIBE, (sysarg_t) evno,
    5353            (sysarg_t) imethod);
    5454}
    5555
    56 /** Subscribe to task event notifications.
    57  *
    58  * @param evno    Event type to subscribe.
    59  * @param imethod Use this interface and method for notifying me.
    60  *
    61  * @return Value returned by the kernel.
    62  *
    63  */
    64 int ipc_event_task_subscribe(event_task_type_t evno, sysarg_t imethod)
     56int event_task_subscribe(event_task_type_t evno, sysarg_t imethod)
    6557{
    66         return __SYSCALL2(SYS_IPC_EVENT_SUBSCRIBE, (sysarg_t) evno,
     58        return __SYSCALL2(SYS_EVENT_SUBSCRIBE, (sysarg_t) evno,
    6759            (sysarg_t) imethod);
    68 }
    69 
    70 /** Unsubscribe from event notifications.
    71  *
    72  * @param evno    Event type to unsubscribe.
    73  *
    74  * @return Value returned by the kernel.
    75  *
    76  */
    77 int ipc_event_unsubscribe(event_type_t evno)
    78 {
    79         return __SYSCALL1(SYS_IPC_EVENT_UNSUBSCRIBE, (sysarg_t) evno);
    80 }
    81 
    82 /** Unsubscribe from task event notifications.
    83  *
    84  * @param evno    Event type to unsubscribe.
    85  *
    86  * @return Value returned by the kernel.
    87  *
    88  */
    89 int ipc_event_task_unsubscribe(event_task_type_t evno)
    90 {
    91         return __SYSCALL1(SYS_IPC_EVENT_UNSUBSCRIBE, (sysarg_t) evno);
    9260}
    9361
     
    9967 *
    10068 */
    101 int ipc_event_unmask(event_type_t evno)
     69int event_unmask(event_type_t evno)
    10270{
    103         return __SYSCALL1(SYS_IPC_EVENT_UNMASK, (sysarg_t) evno);
     71        return __SYSCALL1(SYS_EVENT_UNMASK, (sysarg_t) evno);
    10472}
    10573
    106 /** Unmask task event notifications.
    107  *
    108  * @param evno Event type to unmask.
    109  *
    110  * @return Value returned by the kernel.
    111  *
    112  */
    113 int ipc_event_task_unmask(event_task_type_t evno)
     74int event_task_unmask(event_task_type_t evno)
    11475{
    115         return __SYSCALL1(SYS_IPC_EVENT_UNMASK, (sysarg_t) evno);
     76        return __SYSCALL1(SYS_EVENT_UNMASK, (sysarg_t) evno);
    11677}
    11778
Note: See TracChangeset for help on using the changeset viewer.