Changeset b8341bc in mainline for uspace/lib/c/include
- Timestamp:
- 2019-08-07T05:42:02Z (6 years ago)
- Children:
- c675ab1
- Parents:
- b22b0a94
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-10-19 22:25:17)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-07 05:42:02)
- Location:
- uspace/lib/c/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/taskman.h
rb22b0a94 rb8341bc 41 41 typedef enum { 42 42 TASKMAN_WAIT = IPC_FIRST_USER_METHOD, 43 TASKMAN_RETVAL 43 TASKMAN_RETVAL, 44 TASKMAN_EVENT_CALLBACK 44 45 } taskman_request_t; 46 47 typedef enum { 48 TASKMAN_EV_TASK = IPC_FIRST_USER_METHOD 49 } taskman_event_t; 45 50 46 51 typedef enum { -
uspace/lib/c/include/task.h
rb22b0a94 rb8341bc 75 75 76 76 extern errno_t task_retval(int); 77 extern void task_set_event_handler(task_event_handler_t);77 extern int task_register_event_handler(task_event_handler_t); 78 78 79 79 #endif
Note:
See TracChangeset
for help on using the changeset viewer.