Changeset 0a8f070 in mainline for uspace/lib/c/generic/ns.c
- Timestamp:
- 2019-08-07T02:33:03Z (6 years ago)
- Children:
- fe86d9d
- Parents:
- 103939e
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-08-16 16:04:14)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-07 02:33:03)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/ns.c
r103939e r0a8f070 41 41 42 42 /* 43 * XXX ns does not know about session_ ns, so we create an extra session for43 * XXX ns does not know about session_primary, so we create an extra session for 44 44 * actual communicaton 45 45 */ 46 static async_sess_t *sess_ ns= NULL;46 static async_sess_t *sess_primary = NULL; 47 47 48 48 errno_t service_register(service_t service, iface_t iface, 49 49 async_port_handler_t handler, void *data) 50 50 { 51 async_sess_t *sess = ns_session_get();51 async_sess_t *sess = get_session_primary(); 52 52 if (sess == NULL) 53 53 return EIO; … … 81 81 async_set_fallback_port_handler(handler, data); 82 82 83 async_sess_t *sess = ns_session_get();83 async_sess_t *sess = get_session_primary(); 84 84 if (sess == NULL) 85 85 return EIO; … … 105 105 async_sess_t *service_connect(service_t service, iface_t iface, sysarg_t arg3) 106 106 { 107 async_sess_t *sess = ns_session_get();107 async_sess_t *sess = get_session_primary(); 108 108 if (sess == NULL) 109 109 return NULL; … … 133 133 sysarg_t arg3) 134 134 { 135 async_sess_t *sess = ns_session_get();135 async_sess_t *sess = get_session_primary(); 136 136 if (sess == NULL) 137 137 return NULL; … … 157 157 errno_t ns_ping(void) 158 158 { 159 async_sess_t *sess = ns_session_get();159 async_sess_t *sess = get_session_primary(); 160 160 if (sess == NULL) 161 161 return EIO; … … 168 168 } 169 169 170 errno_t ns_intro(task_id_t id)171 {172 async_exch_t *exch;173 async_sess_t *sess = ns_session_get();174 if (sess == NULL)175 return EIO;176 170 177 exch = async_exchange_begin(sess); 178 errno_t rc = async_req_2_0(exch, NS_ID_INTRO, LOWER32(id), UPPER32(id)); 179 async_exchange_end(exch); 180 181 return rc; 182 } 183 184 async_sess_t *ns_session_get(void) 171 async_sess_t *get_session_primary(void) 185 172 { 186 173 async_exch_t *exch; 187 174 188 if (sess_ ns== NULL) {189 exch = async_exchange_begin(&session_ ns);190 sess_ ns= async_connect_me_to(exch, 0, 0, 0);175 if (sess_primary == NULL) { 176 exch = async_exchange_begin(&session_primary); 177 sess_primary = async_connect_me_to(exch, 0, 0, 0); 191 178 async_exchange_end(exch); 192 if (sess_ ns== NULL)179 if (sess_primary == NULL) 193 180 return NULL; 194 181 } 195 182 196 return sess_ ns;183 return sess_primary; 197 184 } 198 185
Note:
See TracChangeset
for help on using the changeset viewer.