Changeset 566992e1 in mainline for uspace/srv/ns/clonable.c
- Timestamp:
- 2015-08-22T05:01:24Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d9e68d0
- Parents:
- 57dea62
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/ns/clonable.c
r57dea62 r566992e1 64 64 bool service_clonable(service_t service) 65 65 { 66 return (service == SERVICE_LOAD );66 return (service == SERVICE_LOADER); 67 67 } 68 68 … … 89 89 90 90 /* Currently we can only handle a single type of clonable service. */ 91 assert(csr->service == SERVICE_LOAD );91 assert(csr->service == SERVICE_LOADER); 92 92 93 93 ipc_answer_0(callid, EOK); … … 113 113 ipc_callid_t callid) 114 114 { 115 assert(service == SERVICE_LOAD );115 assert(service == SERVICE_LOADER); 116 116 117 117 cs_req_t *csr = malloc(sizeof(cs_req_t));
Note:
See TracChangeset
for help on using the changeset viewer.