Changeset f0cc1c64 in mainline for uspace/lib/c/include
- Timestamp:
- 2025-06-20T19:26:13Z (4 weeks ago)
- Children:
- 817cb83
- Parents:
- f0360ec (diff), 5caad1d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- uspace/lib/c/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/async.h
rf0360ec rf0cc1c64 1 1 /* 2 * Copyright (c) 2025 Jiri Svoboda 2 3 * Copyright (c) 2006 Ondrej Palkovsky 3 4 * All rights reserved. … … 99 100 } exch_mgmt_t; 100 101 102 enum { 103 fallback_port_id = 0 104 }; 105 101 106 /** Forward declarations */ 102 107 struct async_exch; … … 134 139 extern errno_t async_create_port(iface_t, async_port_handler_t, void *, 135 140 port_id_t *); 141 extern void async_port_destroy(port_id_t); 142 extern errno_t async_port_create_interface(port_id_t, iface_t, 143 async_port_handler_t, void *); 136 144 extern void async_set_fallback_port_handler(async_port_handler_t, void *); 137 145 extern errno_t async_create_callback_port(async_exch_t *, iface_t, sysarg_t, -
uspace/lib/c/include/loc.h
rf0360ec rf0cc1c64 1 1 /* 2 * Copyright (c) 202 3Jiri Svoboda2 * Copyright (c) 2025 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 49 49 extern errno_t loc_server_register(const char *, loc_srv_t **); 50 50 extern void loc_server_unregister(loc_srv_t *); 51 extern errno_t loc_service_register(loc_srv_t *, const char *, service_id_t *); 51 extern errno_t loc_service_register(loc_srv_t *, const char *, port_id_t, 52 service_id_t *); 52 53 extern errno_t loc_service_unregister(loc_srv_t *, service_id_t); 53 54 extern errno_t loc_service_add_to_cat(loc_srv_t *, service_id_t, category_id_t);
Note:
See TracChangeset
for help on using the changeset viewer.