Changeset b247c714 in mainline
- Timestamp:
- 2025-07-03T17:09:13Z (3 weeks ago)
- Children:
- 6aafb48
- Parents:
- 038a8d0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/bd/hr/hr.c
r038a8d0 rb247c714 61 61 static void hr_get_vol_states_srv(ipc_call_t *); 62 62 static void hr_ctl_conn(ipc_call_t *); 63 static void hr_c lient_conn(ipc_call_t *, void *);63 static void hr_call_handler(ipc_call_t *, void *); 64 64 65 65 loc_srv_t *hr_srv; … … 619 619 * IPC calls. 620 620 */ 621 static void hr_c lient_conn(ipc_call_t *icall, void *arg)621 static void hr_call_handler(ipc_call_t *icall, void *arg) 622 622 { 623 623 HR_DEBUG("%s()", __func__); … … 654 654 list_initialize(&hr_volumes); 655 655 656 async_set_fallback_port_handler(hr_c lient_conn, NULL);656 async_set_fallback_port_handler(hr_call_handler, NULL); 657 657 658 658 rc = loc_server_register(NAME, &hr_srv);
Note:
See TracChangeset
for help on using the changeset viewer.