Changeset b688fd8 in mainline for uspace/srv/bd
- Timestamp:
- 2015-08-17T18:54:56Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- abf2dfd
- Parents:
- b10460a
- Location:
- uspace/srv/bd
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/bd/file_bd/file_bd.c
rb10460a rb688fd8 157 157 bd_srvs.ops = &file_bd_ops; 158 158 159 async_set_ client_connection(file_bd_connection);159 async_set_fallback_port_handler(file_bd_connection, NULL); 160 160 int rc = loc_server_register(NAME); 161 161 if (rc != EOK) { -
uspace/srv/bd/part/guid_part/guid_part.c
rb10460a rb688fd8 185 185 186 186 /* Register server with location service. */ 187 async_set_ client_connection(gpt_connection);187 async_set_fallback_port_handler(gpt_connection, NULL); 188 188 rc = loc_server_register(NAME); 189 189 if (rc != EOK) { -
uspace/srv/bd/part/mbr_part/mbr_part.c
rb10460a rb688fd8 235 235 236 236 /* Register server with location service. */ 237 async_set_ client_connection(mbr_connection);237 async_set_fallback_port_handler(mbr_connection, NULL); 238 238 rc = loc_server_register(NAME); 239 239 if (rc != EOK) { -
uspace/srv/bd/rd/rd.c
rb10460a rb688fd8 178 178 bd_srvs.ops = &rd_bd_ops; 179 179 180 async_set_ client_connection(rd_client_conn);180 async_set_fallback_port_handler(rd_client_conn, NULL); 181 181 ret = loc_server_register(NAME); 182 182 if (ret != EOK) { -
uspace/srv/bd/sata_bd/sata_bd.c
rb10460a rb688fd8 247 247 int rc; 248 248 249 async_set_ client_connection(sata_bd_connection);249 async_set_fallback_port_handler(sata_bd_connection, NULL); 250 250 rc = loc_server_register(NAME); 251 251 if (rc < 0) {
Note:
See TracChangeset
for help on using the changeset viewer.