Changeset 34e91bf in mainline for uspace/srv/ns/ns.c


Ignore:
Timestamp:
2019-11-16T23:42:54Z (4 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
2f04bdd
Parents:
ae004bc
git-author:
Matthieu Riolo <matthieu.riolo@…> (2019-11-16 23:14:25)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2019-11-16 23:42:54)
Message:

Deleting taskman_noasync

Since IPC and async should be mixed, it makes no sense
to have a function which does exactly that

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/ns/ns.c

    rae004bc r34e91bf  
    4545#include <errno.h>
    4646#include <ipc/taskman.h>
    47 #include <taskman_noasync.h>
     47#include <taskman.h>
     48#include <task.h>
    4849
    4950#include "ns.h"
     
    119120                return rc;
    120121
    121         rc = taskman_intro_ns_noasync();
     122        rc = taskman_intro_ns();
    122123        if (rc != EOK) {
    123124                printf("%s: not accepted by taskman (%i)\n", NAME, rc);
    124125                return rc;
    125126        }
    126         task_retval_noasync(0);
     127        task_retval(0);
    127128
    128129        async_set_fallback_port_handler(ns_connection, NULL);
Note: See TracChangeset for help on using the changeset viewer.