Changes in uspace/lib/c/generic/event.c [9bf51e64:c0699467] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/event.c
r9bf51e64 rc0699467 54 54 } 55 55 56 int event_task_subscribe(event_task_type_t evno, sysarg_t imethod)57 {58 return __SYSCALL2(SYS_EVENT_SUBSCRIBE, (sysarg_t) evno,59 (sysarg_t) imethod);60 }61 62 56 /** Unmask event notifications. 63 57 * … … 72 66 } 73 67 74 int event_task_unmask(event_task_type_t evno)75 {76 return __SYSCALL1(SYS_EVENT_UNMASK, (sysarg_t) evno);77 }78 79 68 /** @} 80 69 */
Note:
See TracChangeset
for help on using the changeset viewer.