Changeset 59ff52d in mainline for uspace/srv/devman


Ignore:
Timestamp:
2018-10-31T00:42:53Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Parents:
8048931c
git-author:
Jakub Jermar <jakub@…> (2018-10-31 00:41:46)
git-committer:
Jakub Jermar <jakub@…> (2018-10-31 00:42:53)
Message:

Add async_accept_0() for accepting connections

Location:
uspace/srv/devman
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devman/client_conn.c

    r8048931c r59ff52d  
    748748{
    749749        /* Accept connection. */
    750         async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
     750        async_accept_0(icall);
    751751
    752752        while (true) {
  • uspace/srv/devman/drv_conn.c

    r8048931c r59ff52d  
    588588
    589589        /* Accept the connection. */
    590         async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
     590        async_accept_0(icall);
    591591
    592592        client = async_get_client_data();
Note: See TracChangeset for help on using the changeset viewer.