Changeset 889cdb1 in mainline
- Timestamp:
- 2018-10-28T21:36:49Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 184f2f8a
- Parents:
- bf05c74
- Location:
- uspace
- Files:
-
- 27 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/hid/adb-kbd/adb-kbd.c
rbf05c74 r889cdb1 142 142 143 143 if (!IPC_GET_IMETHOD(call)) { 144 /* TODO: Handle hangup */144 async_answer_0(&call, EOK); 145 145 return; 146 146 } -
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 } -
uspace/srv/clipboard/clipboard.c
rbf05c74 r889cdb1 161 161 async_get_call(&call); 162 162 163 if (!IPC_GET_IMETHOD(call)) 164 break; 163 if (!IPC_GET_IMETHOD(call)) { 164 async_answer_0(&call, EOK); 165 break; 166 } 165 167 166 168 switch (IPC_GET_IMETHOD(call)) { -
uspace/srv/devman/client_conn.c
rbf05c74 r889cdb1 754 754 async_get_call(&call); 755 755 756 if (!IPC_GET_IMETHOD(call)) 757 break; 756 if (!IPC_GET_IMETHOD(call)) { 757 async_answer_0(&call, EOK); 758 break; 759 } 758 760 759 761 switch (IPC_GET_IMETHOD(call)) { -
uspace/srv/devman/drv_conn.c
rbf05c74 r889cdb1 600 600 async_get_call(&call); 601 601 602 if (!IPC_GET_IMETHOD(call)) 603 break; 602 if (!IPC_GET_IMETHOD(call)) { 603 async_answer_0(&call, EOK); 604 break; 605 } 604 606 605 607 if (IPC_GET_IMETHOD(call) != DEVMAN_DRIVER_REGISTER) { -
uspace/srv/hid/compositor/compositor.c
rbf05c74 r889cdb1 1027 1027 1028 1028 if (!IPC_GET_IMETHOD(call)) { 1029 async_answer_0(&call, EOK); 1029 1030 comp_window_close(win, &call); 1030 1031 window_destroy(win); -
uspace/srv/hid/input/ctl/kbdev.c
rbf05c74 r889cdb1 161 161 162 162 if (!IPC_GET_IMETHOD(call)) { 163 async_answer_0(&call, EOK); 163 164 kbdev_destroy(kbdev); 164 165 return; -
uspace/srv/hid/input/proto/mousedev.c
rbf05c74 r889cdb1 80 80 81 81 if (!IPC_GET_IMETHOD(call)) { 82 async_answer_0(&call, EOK); 82 83 mousedev_destroy(mousedev); 83 84 return; -
uspace/srv/hid/isdv4_tablet/main.c
rbf05c74 r889cdb1 81 81 async_get_call(&call); 82 82 83 if (!IPC_GET_IMETHOD(call)) 83 if (!IPC_GET_IMETHOD(call)) { 84 async_answer_0(&call, EOK); 84 85 break; 86 } 85 87 86 88 async_answer_0(&call, ENOTSUP); -
uspace/srv/loader/main.c
rbf05c74 r889cdb1 376 376 async_get_call(&call); 377 377 378 if (!IPC_GET_IMETHOD(call)) 378 if (!IPC_GET_IMETHOD(call)) { 379 async_answer_0(&call, EOK); 379 380 exit(0); 381 } 380 382 381 383 switch (IPC_GET_IMETHOD(call)) { -
uspace/srv/locsrv/locsrv.c
rbf05c74 r889cdb1 1413 1413 async_get_call(&call); 1414 1414 1415 if (!IPC_GET_IMETHOD(call)) 1416 break; 1415 if (!IPC_GET_IMETHOD(call)) { 1416 async_answer_0(&call, EOK); 1417 break; 1418 } 1417 1419 1418 1420 switch (IPC_GET_IMETHOD(call)) { … … 1467 1469 async_get_call(&call); 1468 1470 1469 if (!IPC_GET_IMETHOD(call)) 1470 break; 1471 if (!IPC_GET_IMETHOD(call)) { 1472 async_answer_0(&call, EOK); 1473 break; 1474 } 1471 1475 1472 1476 switch (IPC_GET_IMETHOD(call)) { -
uspace/srv/logger/ctl.c
rbf05c74 r889cdb1 75 75 async_get_call(&call); 76 76 77 if (!IPC_GET_IMETHOD(call)) 77 if (!IPC_GET_IMETHOD(call)) { 78 async_answer_0(&call, EOK); 78 79 break; 80 } 79 81 80 82 switch (IPC_GET_IMETHOD(call)) { -
uspace/srv/logger/writer.c
rbf05c74 r889cdb1 109 109 async_get_call(&call); 110 110 111 if (!IPC_GET_IMETHOD(call)) 111 if (!IPC_GET_IMETHOD(call)) { 112 async_answer_0(&call, EOK); 112 113 break; 114 } 113 115 114 116 switch (IPC_GET_IMETHOD(call)) { -
uspace/srv/net/ethip/ethip_nic.c
rbf05c74 r889cdb1 300 300 301 301 if (!IPC_GET_IMETHOD(call)) { 302 /* TODO: Handle hangup */302 async_answer_0(&call, EOK); 303 303 return; 304 304 } -
uspace/srv/ns/ns.c
rbf05c74 r889cdb1 129 129 130 130 (void) ns_task_disconnect(&call); 131 async_answer_0(&call, EOK); 131 132 } 132 133 -
uspace/srv/vfs/vfs.c
rbf05c74 r889cdb1 62 62 async_get_call(&call); 63 63 64 if (!IPC_GET_IMETHOD(call)) 64 if (!IPC_GET_IMETHOD(call)) { 65 async_answer_0(&call, EOK); 65 66 break; 67 } 66 68 67 69 switch (IPC_GET_IMETHOD(call)) { -
uspace/srv/vfs/vfs_ipc.c
rbf05c74 r889cdb1 330 330 async_get_call(&call); 331 331 332 if (!IPC_GET_IMETHOD(call)) 333 break; 332 if (!IPC_GET_IMETHOD(call)) { 333 async_answer_0(&call, EOK); 334 break; 335 } 334 336 335 337 switch (IPC_GET_IMETHOD(call)) {
Note:
See TracChangeset
for help on using the changeset viewer.