Changeset 50b581d in mainline for uspace/lib/c
- Timestamp:
- 2012-04-21T09:23:39Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d3a8e47
- Parents:
- 0d520a2
- Location:
- uspace/lib/c/generic
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/device/nic.c
r0d520a2 r50b581d 65 65 66 66 if (retval != EOK) { 67 async_ wait_for(req, NULL);67 async_forget(req); 68 68 return retval; 69 69 } … … 94 94 rc = async_connect_to_me(exch, 0, 0, 0, cfun, carg); 95 95 if (rc != EOK) { 96 async_ wait_for(req, NULL);96 async_forget(req); 97 97 return rc; 98 98 } -
uspace/lib/c/generic/devman.c
r0d520a2 r50b581d 188 188 189 189 if (retval != EOK) { 190 async_ wait_for(req, NULL);190 async_forget(req); 191 191 return retval; 192 192 } … … 226 226 if (retval != EOK) { 227 227 devman_exchange_end(exch); 228 async_ wait_for(req, NULL);228 async_forget(req); 229 229 return retval; 230 230 } … … 242 242 if (retval != EOK) { 243 243 devman_exchange_end(exch); 244 async_ wait_for(req2, NULL);245 async_ wait_for(req, NULL);244 async_forget(req2); 245 async_forget(req); 246 246 return retval; 247 247 } … … 250 250 if (retval != EOK) { 251 251 devman_exchange_end(exch); 252 async_ wait_for(req, NULL);252 async_forget(req); 253 253 return retval; 254 254 } … … 283 283 284 284 if (retval != EOK) { 285 async_ wait_for(req, NULL);285 async_forget(req); 286 286 return retval; 287 287 } … … 386 386 387 387 if (retval != EOK) { 388 async_ wait_for(req, NULL);388 async_forget(req); 389 389 return retval; 390 390 } … … 423 423 424 424 if (dretval != EOK) { 425 async_ wait_for(req, NULL);425 async_forget(req); 426 426 return dretval; 427 427 } … … 488 488 489 489 if (rc != EOK) { 490 async_ wait_for(req, NULL);490 async_forget(req); 491 491 return rc; 492 492 } -
uspace/lib/c/generic/inet.c
r0d520a2 r50b581d 120 120 121 121 if (rc != EOK) { 122 async_ wait_for(req, NULL);122 async_forget(req); 123 123 return rc; 124 124 } -
uspace/lib/c/generic/inetcfg.c
r0d520a2 r50b581d 51 51 52 52 if (rc != EOK) { 53 async_ wait_for(req, NULL);53 async_forget(req); 54 54 return rc; 55 55 } … … 146 146 147 147 if (retval != EOK) { 148 async_ wait_for(req, NULL);148 async_forget(req); 149 149 return retval; 150 150 } … … 183 183 184 184 if (dretval != EOK) { 185 async_ wait_for(req, NULL);185 async_forget(req); 186 186 return dretval; 187 187 } … … 216 216 217 217 if (retval != EOK) { 218 async_ wait_for(req, NULL);218 async_forget(req); 219 219 return retval; 220 220 } … … 261 261 262 262 if (dretval != EOK) { 263 async_ wait_for(req, NULL);263 async_forget(req); 264 264 return dretval; 265 265 } … … 294 294 295 295 if (retval != EOK) { 296 async_ wait_for(req, NULL);296 async_forget(req); 297 297 return retval; 298 298 } … … 331 331 332 332 if (dretval != EOK) { 333 async_ wait_for(req, NULL);333 async_forget(req); 334 334 return dretval; 335 335 } … … 364 364 365 365 if (retval != EOK) { 366 async_ wait_for(req, NULL);366 async_forget(req); 367 367 return retval; 368 368 } -
uspace/lib/c/generic/inetping.c
r0d520a2 r50b581d 88 88 89 89 if (retval != EOK) { 90 async_ wait_for(req, NULL);90 async_forget(req); 91 91 return retval; 92 92 } -
uspace/lib/c/generic/iplink.c
r0d520a2 r50b581d 94 94 95 95 if (rc != EOK) { 96 async_ wait_for(req, NULL);96 async_forget(req); 97 97 return rc; 98 98 } -
uspace/lib/c/generic/iplink_srv.c
r0d520a2 r50b581d 178 178 179 179 if (rc != EOK) { 180 async_ wait_for(req, NULL);180 async_forget(req); 181 181 return rc; 182 182 } -
uspace/lib/c/generic/loader.c
r0d520a2 r50b581d 101 101 102 102 if (rc != EOK) { 103 async_ wait_for(req, NULL);103 async_forget(req); 104 104 return (int) rc; 105 105 } … … 139 139 140 140 if (rc != EOK) { 141 async_ wait_for(req, NULL);141 async_forget(req); 142 142 return (int) rc; 143 143 } … … 177 177 178 178 if (rc != EOK) { 179 async_ wait_for(req, NULL);179 async_forget(req); 180 180 return (int) rc; 181 181 } … … 236 236 237 237 if (rc != EOK) { 238 async_ wait_for(req, NULL);238 async_forget(req); 239 239 return (int) rc; 240 240 } … … 281 281 282 282 if (rc != EOK) { 283 async_ wait_for(req, NULL);283 async_forget(req); 284 284 return (int) rc; 285 285 } -
uspace/lib/c/generic/loc.c
r0d520a2 r50b581d 246 246 247 247 if (retval != EOK) { 248 async_ wait_for(req, NULL);248 async_forget(req); 249 249 return retval; 250 250 } … … 285 285 286 286 if (retval != EOK) { 287 async_ wait_for(req, NULL);287 async_forget(req); 288 288 return retval; 289 289 } … … 352 352 353 353 if (retval != EOK) { 354 async_ wait_for(req, NULL);354 async_forget(req); 355 355 return retval; 356 356 } … … 401 401 402 402 if (dretval != EOK) { 403 async_ wait_for(req, NULL);403 async_forget(req); 404 404 return dretval; 405 405 } … … 471 471 472 472 if (retval != EOK) { 473 async_ wait_for(req, NULL);473 async_forget(req); 474 474 return retval; 475 475 } … … 520 520 521 521 if (retval != EOK) { 522 async_ wait_for(req, NULL);522 async_forget(req); 523 523 return retval; 524 524 } … … 683 683 684 684 if (rc != EOK) { 685 async_ wait_for(req, NULL);685 async_forget(req); 686 686 free(devs); 687 687 return 0; … … 732 732 733 733 if (rc != EOK) { 734 async_ wait_for(req, NULL);734 async_forget(req); 735 735 free(devs); 736 736 return 0; … … 760 760 761 761 if (rc != EOK) { 762 async_ wait_for(req, NULL);762 async_forget(req); 763 763 return rc; 764 764 }
Note:
See TracChangeset
for help on using the changeset viewer.