Changeset 012dd8e in mainline for uspace/srv/ns/ns.c
- Timestamp:
- 2019-08-07T09:15:30Z (6 years ago)
- Children:
- e8747bd8
- Parents:
- 780c8ce
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-11-01 00:08:04)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-07 09:15:30)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/ns/ns.c
r780c8ce r012dd8e 1 1 /* 2 2 * Copyright (c) 2006 Ondrej Palkovsky 3 * Copyright (c) 2015 Michal Koutny 3 4 * All rights reserved. 4 5 * … … 43 44 #include <stdio.h> 44 45 #include <errno.h> 46 #define TASKMAN_DISABLE_ASYNC 47 #include <taskman.h> 48 #undef TASKMAN_DISABLE_ASYNC 49 45 50 #include "ns.h" 46 51 #include "service.h" … … 115 120 if (rc != EOK) 116 121 return rc; 122 123 rc = taskman_intro_ns(); 124 if (rc != EOK) { 125 printf("%s: not accepted by taskman (%i)\n", NAME, rc); 126 return rc; 127 } 117 128 118 129 async_set_fallback_port_handler(ns_connection, NULL);
Note:
See TracChangeset
for help on using the changeset viewer.