Changeset f0cc1c64 in mainline for uspace/srv/system/system.c
- Timestamp:
- 2025-06-20T19:26:13Z (9 days 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/system/system.c
rf0360ec rf0cc1c64 573 573 static errno_t system_srv_init(sys_srv_t *syssrv) 574 574 { 575 port_id_t port ;575 port_id_t port = 0; 576 576 loc_srv_t *srv = NULL; 577 577 service_id_t sid = 0; … … 595 595 } 596 596 597 rc = loc_service_register(srv, SYSTEM_DEFAULT, &sid);597 rc = loc_service_register(srv, SYSTEM_DEFAULT, port, &sid); 598 598 if (rc != EOK) { 599 599 log_msg(LOG_DEFAULT, LVL_ERROR, … … 609 609 if (srv != NULL) 610 610 loc_server_unregister(srv); 611 // XXX destroy port 611 if (port != 0) 612 async_port_destroy(port); 612 613 return rc; 613 614 }
Note:
See TracChangeset
for help on using the changeset viewer.