Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/ipc/event.h

    r228e490 r98000fb  
    3737
    3838#include <ipc/event_types.h>
    39 #include <typedefs.h>
     39#include <arch/types.h>
    4040#include <synch/spinlock.h>
    4141#include <ipc/ipc.h>
     
    4747        /** Answerbox for notifications. */
    4848        answerbox_t *answerbox;
    49         /** Interface and method to be used for the notification. */
    50         sysarg_t imethod;
     49        /** Method to be used for the notification. */
     50        unative_t method;
    5151        /** Counter. */
    5252        size_t counter;
     
    5454
    5555extern void event_init(void);
    56 extern sysarg_t sys_event_subscribe(sysarg_t, sysarg_t);
     56extern unative_t sys_event_subscribe(unative_t, unative_t);
    5757extern bool event_is_subscribed(event_type_t);
    5858extern void event_cleanup_answerbox(answerbox_t *);
     
    7171        event_notify((e), (a1), (a2), (a3), (a4), (a5))
    7272
    73 extern void event_notify(event_type_t, sysarg_t, sysarg_t, sysarg_t,
    74     sysarg_t, sysarg_t);
     73extern void event_notify(event_type_t, unative_t, unative_t, unative_t,
     74    unative_t, unative_t);
    7575
    7676#endif
Note: See TracChangeset for help on using the changeset viewer.