Changeset 22d990c in mainline for uspace/lib/c/include
- Timestamp:
- 2020-01-11T00:36:26Z (6 years ago)
- Children:
- 06599a1
- Parents:
- 8a74512
- Location:
- uspace/lib/c/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/async.h
r8a74512 r22d990c 131 131 extern void *async_get_client_data_by_id(task_id_t); 132 132 extern void async_put_client_data_by_id(task_id_t); 133 134 extern void async_set_implicit_connection(async_port_handler_t);135 133 136 134 extern errno_t async_create_port(iface_t, async_port_handler_t, void *, -
uspace/lib/c/include/ipc/taskman.h
r8a74512 r22d990c 39 39 40 40 typedef enum { 41 TASKMAN_NEW_TASK = IPC_FIRST_USER_METHOD, 42 TASKMAN_CONNECT_TO_NS, 43 TASKMAN_CONNECT_TO_LOADER 44 } taskman_connection_t; 45 46 typedef enum { 41 47 TASKMAN_WAIT = IPC_FIRST_USER_METHOD, 42 48 TASKMAN_RETVAL, 43 49 TASKMAN_EVENT_CALLBACK, 44 TASKMAN_NEW_TASK,45 46 50 TASKMAN_I_AM_NS, 47 TASKMAN_I_AM_LOADER, 48 49 TASKMAN_CONNECT_TO_NS, 50 TASKMAN_CONNECT_TO_LOADER 51 TASKMAN_I_AM_LOADER 51 52 } taskman_request_t; 52 53 -
uspace/lib/c/include/task.h
r8a74512 r22d990c 68 68 __attribute__((sentinel)); 69 69 70 extern void task_cancel_wait(task_wait_t *); 70 71 extern errno_t task_wait(task_wait_t *, task_exit_t *, int *); 71 72 extern errno_t task_wait_task_id(task_id_t, int, task_exit_t *, int *); 72 73 extern void task_cancel_wait(task_wait_t *);74 73 75 74 extern errno_t task_retval(int);
Note:
See TracChangeset
for help on using the changeset viewer.