Changeset 889cdb1 in mainline for uspace/lib
- Timestamp:
- 2018-10-28T21:36:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 184f2f8a
- Parents:
- bf05c74
- Location:
- uspace/lib
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/bd.c
rbf05c74 r889cdb1 207 207 208 208 if (!IPC_GET_IMETHOD(call)) { 209 /* TODO: Handle hangup */209 async_answer_0(&call, EOK); 210 210 return; 211 211 } -
uspace/lib/c/generic/inet.c
rbf05c74 r889cdb1 241 241 242 242 if (!IPC_GET_IMETHOD(call)) { 243 /* TODO: Handle hangup */243 async_answer_0(&call, EOK); 244 244 return; 245 245 } -
uspace/lib/c/generic/inet/tcp.c
rbf05c74 r889cdb1 825 825 if (!IPC_GET_IMETHOD(call)) { 826 826 /* Hangup*/ 827 async_answer_0(&call, EOK); 827 828 goto out; 828 829 } -
uspace/lib/c/generic/inet/udp.c
rbf05c74 r889cdb1 502 502 if (!IPC_GET_IMETHOD(call)) { 503 503 /* Hangup */ 504 async_answer_0(&call, EOK); 504 505 goto out; 505 506 } -
uspace/lib/c/generic/inetping.c
rbf05c74 r889cdb1 214 214 215 215 if (!IPC_GET_IMETHOD(call)) { 216 /* TODO: Handle hangup */216 async_answer_0(&call, EOK); 217 217 return; 218 218 } -
uspace/lib/c/generic/io/input.c
rbf05c74 r889cdb1 173 173 174 174 if (!IPC_GET_IMETHOD(call)) { 175 /* TODO: Handle hangup */175 async_answer_0(&call, EOK); 176 176 return; 177 177 } -
uspace/lib/c/generic/iplink.c
rbf05c74 r889cdb1 288 288 289 289 if (!IPC_GET_IMETHOD(call)) { 290 /* TODO: Handle hangup */290 async_answer_0(&call, EOK); 291 291 return; 292 292 } -
uspace/lib/c/generic/loc.c
rbf05c74 r889cdb1 63 63 64 64 if (!IPC_GET_IMETHOD(call)) { 65 /* TODO: Handle hangup */65 async_answer_0(&call, EOK); 66 66 return; 67 67 } -
uspace/lib/drv/generic/driver.c
rbf05c74 r889cdb1 345 345 async_get_call(&call); 346 346 347 if (!IPC_GET_IMETHOD(call)) 347 if (!IPC_GET_IMETHOD(call)) { 348 async_answer_0(&call, EOK); 348 349 break; 350 } 349 351 350 352 switch (IPC_GET_IMETHOD(call)) { -
uspace/lib/fs/libfs.c
rbf05c74 r889cdb1 290 290 async_get_call(&call); 291 291 292 if (!IPC_GET_IMETHOD(call)) 292 if (!IPC_GET_IMETHOD(call)) { 293 async_answer_0(&call, EOK); 293 294 return; 295 } 294 296 295 297 switch (IPC_GET_IMETHOD(call)) { -
uspace/lib/graph/graph.c
rbf05c74 r889cdb1 517 517 518 518 if (!IPC_GET_IMETHOD(call)) { 519 async_answer_0(&call, E INVAL);519 async_answer_0(&call, EOK); 520 520 break; 521 521 } … … 577 577 578 578 if (!IPC_GET_IMETHOD(call)) { 579 async_answer_0(&call, E INVAL);579 async_answer_0(&call, EOK); 580 580 break; 581 581 }
Note:
See TracChangeset
for help on using the changeset viewer.