Changeset 241f1985 in mainline for uspace/lib/c/include
- Timestamp:
- 2019-08-31T10:45:17Z (6 years ago)
- Children:
- 102f641
- Parents:
- f92b315
- git-author:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-23 22:04:34)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-31 10:45:17)
- Location:
- uspace/lib/c/include
- Files:
-
- 5 edited
-
adt/dyn_array.h (modified) (1 diff)
-
async.h (modified) (1 diff)
-
ipc/services.h (modified) (1 diff)
-
task.h (modified) (1 diff)
-
taskman.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/adt/dyn_array.h
rf92b315 r241f1985 41 41 typedef struct { 42 42 /** Data buffer of array */ 43 uint8_t*_data;43 void *_data; 44 44 /** Size on bytes of a single item */ 45 45 size_t _item_size; -
uspace/lib/c/include/async.h
rf92b315 r241f1985 132 132 extern void async_put_client_data_by_id(task_id_t); 133 133 134 extern void async_set_implicit_connection(async_ client_conn_t);134 extern void async_set_implicit_connection(async_port_handler_t); 135 135 136 136 extern errno_t async_create_port(iface_t, async_port_handler_t, void *, -
uspace/lib/c/include/ipc/services.h
rf92b315 r241f1985 55 55 #define SERVICE_NAME_CLIPBOARD "clipboard" 56 56 #define SERVICE_NAME_CORECFG "corecfg" 57 #define SERVICE_NAME_DEVMAN "devman" 57 58 #define SERVICE_NAME_DHCP "net/dhcp" 58 59 #define SERVICE_NAME_DNSR "net/dnsr" -
uspace/lib/c/include/task.h
rf92b315 r241f1985 76 76 77 77 /* Implemented in task_event.c */ 78 extern int task_register_event_handler(task_event_handler_t, bool);78 extern errno_t task_register_event_handler(task_event_handler_t, bool); 79 79 80 80 #endif -
uspace/lib/c/include/taskman.h
rf92b315 r241f1985 40 40 /* Internal functions to be used by loader only */ 41 41 extern async_sess_t *taskman_get_session(void); 42 extern int taskman_intro_loader(void);42 extern errno_t taskman_intro_loader(void); 43 43 44 44 /* Internal functions to be used by NS only */ 45 extern int taskman_intro_ns(void);45 extern errno_t taskman_intro_ns(void); 46 46 47 47 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
