Changeset beb83c1 in mainline for uspace/srv
- Timestamp:
- 2018-10-31T06:03:38Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 208db5a
- Parents:
- 167616c
- git-author:
- Jakub Jermar <jakub@…> (2018-10-31 00:41:46)
- git-committer:
- Jakub Jermar <jakub@…> (2018-10-31 06:03:38)
- Location:
- uspace/srv
- Files:
-
- 26 edited
-
audio/hound/audio_device.c (modified) (1 diff)
-
bd/vbd/vbd.c (modified) (1 diff)
-
clipboard/clipboard.c (modified) (1 diff)
-
devman/client_conn.c (modified) (1 diff)
-
devman/drv_conn.c (modified) (1 diff)
-
hid/compositor/compositor.c (modified) (2 diffs)
-
hid/input/input.c (modified) (1 diff)
-
hid/isdv4_tablet/main.c (modified) (1 diff)
-
hid/output/output.c (modified) (1 diff)
-
hid/s3c24xx_ts/s3c24xx_ts.c (modified) (1 diff)
-
loader/main.c (modified) (1 diff)
-
locsrv/locsrv.c (modified) (2 diffs)
-
logger/ctl.c (modified) (1 diff)
-
logger/writer.c (modified) (1 diff)
-
net/dhcp/main.c (modified) (1 diff)
-
net/dnsrsrv/dnsrsrv.c (modified) (1 diff)
-
net/inetsrv/inetcfg.c (modified) (1 diff)
-
net/inetsrv/inetping.c (modified) (1 diff)
-
net/inetsrv/inetsrv.c (modified) (1 diff)
-
net/tcp/service.c (modified) (1 diff)
-
net/udp/service.c (modified) (1 diff)
-
ns/ns.c (modified) (1 diff)
-
taskmon/taskmon.c (modified) (1 diff)
-
vfs/vfs.c (modified) (1 diff)
-
vfs/vfs_ipc.c (modified) (1 diff)
-
volsrv/volsrv.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/audio/hound/audio_device.c
r167616c rbeb83c1 269 269 270 270 /* Answer initial request */ 271 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());271 async_accept_0(icall); 272 272 audio_device_t *dev = arg; 273 273 assert(dev); -
uspace/srv/bd/vbd/vbd.c
r167616c rbeb83c1 365 365 366 366 /* Accept the connection */ 367 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());367 async_accept_0(icall); 368 368 369 369 while (true) { -
uspace/srv/clipboard/clipboard.c
r167616c rbeb83c1 155 155 { 156 156 /* Accept connection */ 157 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());157 async_accept_0(icall); 158 158 159 159 while (true) { -
uspace/srv/devman/client_conn.c
r167616c rbeb83c1 748 748 { 749 749 /* Accept connection. */ 750 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());750 async_accept_0(icall); 751 751 752 752 while (true) { -
uspace/srv/devman/drv_conn.c
r167616c rbeb83c1 588 588 589 589 /* Accept the connection. */ 590 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());590 async_accept_0(icall); 591 591 592 592 client = async_get_client_data(); -
uspace/srv/hid/compositor/compositor.c
r167616c rbeb83c1 918 918 /* Allocate resources for new window and register it to the location service. */ 919 919 if (service_id == winreg_id) { 920 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());920 async_accept_0(icall); 921 921 922 922 async_get_call(&call); … … 996 996 997 997 if (win) { 998 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());998 async_accept_0(icall); 999 999 } else { 1000 1000 async_answer_0(icall, EINVAL); -
uspace/srv/hid/input/input.c
r167616c rbeb83c1 328 328 } 329 329 330 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());330 async_accept_0(icall); 331 331 332 332 while (true) { -
uspace/srv/hid/isdv4_tablet/main.c
r167616c rbeb83c1 65 65 static void mouse_connection(ipc_call_t *icall, void *arg) 66 66 { 67 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());67 async_accept_0(icall); 68 68 69 69 async_sess_t *sess = -
uspace/srv/hid/output/output.c
r167616c rbeb83c1 398 398 { 399 399 /* Accept the connection */ 400 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());400 async_accept_0(icall); 401 401 402 402 while (true) { -
uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c
r167616c rbeb83c1 372 372 static void s3c24xx_ts_connection(ipc_call_t *icall, void *arg) 373 373 { 374 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());374 async_accept_0(icall); 375 375 376 376 while (true) { -
uspace/srv/loader/main.c
r167616c rbeb83c1 374 374 375 375 /* Accept the connection */ 376 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());376 async_accept_0(icall); 377 377 378 378 /* Ignore parameters, the connection is already open */ -
uspace/srv/locsrv/locsrv.c
r167616c rbeb83c1 1396 1396 { 1397 1397 /* Accept connection */ 1398 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());1398 async_accept_0(icall); 1399 1399 1400 1400 /* … … 1463 1463 { 1464 1464 /* Accept connection */ 1465 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());1465 async_accept_0(icall); 1466 1466 1467 1467 while (true) { -
uspace/srv/logger/ctl.c
r167616c rbeb83c1 68 68 int fd; 69 69 70 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());70 async_accept_0(icall); 71 71 logger_log("control: new client.\n"); 72 72 -
uspace/srv/logger/writer.c
r167616c rbeb83c1 98 98 99 99 /* Acknowledge the connection. */ 100 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());100 async_accept_0(icall); 101 101 102 102 logger_log("writer: new client.\n"); -
uspace/srv/net/dhcp/main.c
r167616c rbeb83c1 128 128 129 129 /* Accept the connection */ 130 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());130 async_accept_0(icall); 131 131 132 132 while (true) { -
uspace/srv/net/dnsrsrv/dnsrsrv.c
r167616c rbeb83c1 213 213 214 214 /* Accept the connection */ 215 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());215 async_accept_0(icall); 216 216 217 217 while (true) { -
uspace/srv/net/inetsrv/inetcfg.c
r167616c rbeb83c1 742 742 743 743 /* Accept the connection */ 744 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());744 async_accept_0(icall); 745 745 746 746 while (true) { -
uspace/srv/net/inetsrv/inetping.c
r167616c rbeb83c1 284 284 285 285 /* Accept the connection */ 286 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());286 async_accept_0(icall); 287 287 288 288 inetping_client_t client; -
uspace/srv/net/inetsrv/inetsrv.c
r167616c rbeb83c1 390 390 391 391 /* Accept the connection */ 392 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());392 async_accept_0(icall); 393 393 394 394 inet_client_init(&client); -
uspace/srv/net/tcp/service.c
r167616c rbeb83c1 1169 1169 1170 1170 /* Accept the connection */ 1171 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());1171 async_accept_0(icall); 1172 1172 1173 1173 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_client_conn() - client=%p", -
uspace/srv/net/udp/service.c
r167616c rbeb83c1 667 667 668 668 /* Accept the connection */ 669 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());669 async_accept_0(icall); 670 670 671 671 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_client_conn()"); -
uspace/srv/ns/ns.c
r167616c rbeb83c1 70 70 } 71 71 72 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());72 async_accept_0(icall); 73 73 74 74 while (true) { -
uspace/srv/taskmon/taskmon.c
r167616c rbeb83c1 108 108 { 109 109 /* Accept the connection */ 110 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());110 async_accept_0(icall); 111 111 112 112 while (true) { -
uspace/srv/vfs/vfs.c
r167616c rbeb83c1 56 56 static void vfs_pager(ipc_call_t *icall, void *arg) 57 57 { 58 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());58 async_accept_0(icall); 59 59 60 60 while (true) { -
uspace/srv/vfs/vfs_ipc.c
r167616c rbeb83c1 324 324 * This call needs to be answered. 325 325 */ 326 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());326 async_accept_0(icall); 327 327 328 328 while (cont) { -
uspace/srv/volsrv/volsrv.c
r167616c rbeb83c1 551 551 552 552 /* Accept the connection */ 553 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());553 async_accept_0(icall); 554 554 555 555 while (true) {
Note:
See TracChangeset
for help on using the changeset viewer.
