Changes in uspace/lib/c/generic/devman.c [50b581d:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/devman.c
r50b581d r9d58539 188 188 189 189 if (retval != EOK) { 190 async_ forget(req);190 async_wait_for(req, NULL); 191 191 return retval; 192 192 } … … 226 226 if (retval != EOK) { 227 227 devman_exchange_end(exch); 228 async_ forget(req);228 async_wait_for(req, NULL); 229 229 return retval; 230 230 } … … 242 242 if (retval != EOK) { 243 243 devman_exchange_end(exch); 244 async_ forget(req2);245 async_ forget(req);244 async_wait_for(req2, NULL); 245 async_wait_for(req, NULL); 246 246 return retval; 247 247 } … … 250 250 if (retval != EOK) { 251 251 devman_exchange_end(exch); 252 async_ forget(req);252 async_wait_for(req, NULL); 253 253 return retval; 254 254 } … … 283 283 284 284 if (retval != EOK) { 285 async_ forget(req);285 async_wait_for(req, NULL); 286 286 return retval; 287 287 } … … 386 386 387 387 if (retval != EOK) { 388 async_ forget(req);388 async_wait_for(req, NULL); 389 389 return retval; 390 390 } … … 423 423 424 424 if (dretval != EOK) { 425 async_ forget(req);425 async_wait_for(req, NULL); 426 426 return dretval; 427 427 } … … 488 488 489 489 if (rc != EOK) { 490 async_ forget(req);490 async_wait_for(req, NULL); 491 491 return rc; 492 492 }
Note:
See TracChangeset
for help on using the changeset viewer.