Changeset 2d1f7a21 in mainline for uspace/lib/usbvirt/src/ipc_hc.c
- Timestamp:
- 2012-04-21T14:23:11Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cb7056a
- Parents:
- d37d500e (diff), d3a8e47 (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/lib/usbvirt/src/ipc_hc.c
rd37d500e r2d1f7a21 80 80 if (rc != EOK) { 81 81 async_exchange_end(exch); 82 async_ wait_for(opening_request, NULL);82 async_forget(opening_request); 83 83 return rc; 84 84 } … … 91 91 92 92 if (data_request == 0) { 93 async_ wait_for(opening_request, NULL);93 async_forget(opening_request); 94 94 return ENOMEM; 95 95 } … … 153 153 if (rc != EOK) { 154 154 async_exchange_end(exch); 155 async_ wait_for(opening_request, NULL);155 async_forget(opening_request); 156 156 return rc; 157 157 } … … 161 161 if (rc != EOK) { 162 162 async_exchange_end(exch); 163 async_ wait_for(opening_request, NULL);163 async_forget(opening_request); 164 164 return rc; 165 165 } … … 226 226 227 227 if (data_request == 0) { 228 async_ wait_for(opening_request, NULL);228 async_forget(opening_request); 229 229 return ENOMEM; 230 230 } … … 301 301 302 302 if (rc != EOK) { 303 async_ wait_for(opening_request, NULL);303 async_forget(opening_request); 304 304 return rc; 305 305 }
Note:
See TracChangeset
for help on using the changeset viewer.