Changeset 8ff0bd2 in mainline for uspace/srv/ns/clonable.c
- Timestamp:
- 2011-09-04T11:30:58Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 03bc76a
- Parents:
- d2c67e7 (diff), deac215e (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/ns/clonable.c
rd2c67e7 r8ff0bd2 52 52 53 53 /** List of clonable-service connection requests. */ 54 static li nk_t cs_req;54 static list_t cs_req; 55 55 56 56 int clonable_init(void) … … 76 76 ipc_callid_t callid) 77 77 { 78 if (list_empty(&cs_req)) { 78 link_t *req_link; 79 80 req_link = list_first(&cs_req); 81 if (req_link == NULL) { 79 82 /* There was no pending connection request. */ 80 83 printf("%s: Unexpected clonable server.\n", NAME); … … 83 86 } 84 87 85 cs_req_t *csr = list_get_instance( cs_req.next, cs_req_t, link);86 list_remove( &csr->link);88 cs_req_t *csr = list_get_instance(req_link, cs_req_t, link); 89 list_remove(req_link); 87 90 88 91 /* Currently we can only handle a single type of clonable service. */
Note:
See TracChangeset
for help on using the changeset viewer.