Changeset cc574511 in mainline for uspace/lib/c/include
- Timestamp:
- 2011-08-16T12:37:58Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 16dc887
- Parents:
- 86ffa27f
- Location:
- uspace/lib/c/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/loc.h
r86ffa27f rcc574511 40 40 41 41 typedef sysarg_t service_id_t; 42 typedef sysarg_t category_id_t; 42 43 43 44 typedef enum { … … 50 51 LOC_SERVER_REGISTER = IPC_FIRST_USER_METHOD, 51 52 LOC_SERVER_UNREGISTER, 53 LOC_SERVICE_ADD_TO_CAT, 52 54 LOC_SERVICE_REGISTER, 53 55 LOC_SERVICE_UNREGISTER, 54 56 LOC_SERVICE_GET_ID, 55 57 LOC_NAMESPACE_GET_ID, 58 LOC_CATEGORY_GET_ID, 59 LOC_CATEGORY_GET_SVCS, 56 60 LOC_ID_PROBE, 57 61 LOC_NULL_CREATE, -
uspace/lib/c/include/loc.h
r86ffa27f rcc574511 48 48 extern int loc_service_register_with_iface(const char *, service_id_t *, 49 49 sysarg_t); 50 extern int loc_service_add_to_cat(service_id_t, category_id_t); 50 51 51 52 extern int loc_service_get_id(const char *, service_id_t *, … … 53 54 extern int loc_namespace_get_id(const char *, service_id_t *, 54 55 unsigned int); 56 extern int loc_category_get_id(const char *, category_id_t *, 57 unsigned int); 58 extern int loc_category_get_svcs(category_id_t, category_id_t **, size_t *); 55 59 extern loc_object_type_t loc_id_probe(service_id_t); 56 60
Note:
See TracChangeset
for help on using the changeset viewer.