Changeset 889cdb1 in mainline for uspace/lib/c
- 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/c/generic
- Files:
-
- 8 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 }
Note:
See TracChangeset
for help on using the changeset viewer.