Changes in uspace/lib/c/generic/ns.c [d1e18573:9934f7d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/ns.c
rd1e18573 r9934f7d 52 52 { 53 53 async_exch_t *exch = async_exchange_begin(session_ns); 54 if (!exch)55 return NULL;56 54 async_sess_t *sess = 57 55 async_connect_me_to(mgmt, exch, service, arg2, arg3); 58 56 async_exchange_end(exch); 59 60 if (!sess)61 return NULL;62 63 /*64 * FIXME Ugly hack to work around limitation of implementing65 * parallel exchanges using multiple connections. Shift out66 * first argument for non-initial connections.67 */68 async_sess_args_set(sess, arg2, arg3, 0);69 57 70 58 return sess; … … 78 66 async_connect_me_to_blocking(mgmt, exch, service, arg2, arg3); 79 67 async_exchange_end(exch); 80 81 /*82 * FIXME Ugly hack to work around limitation of implementing83 * parallel exchanges using multiple connections. Shift out84 * first argument for non-initial connections.85 */86 async_sess_args_set(sess, arg2, arg3, 0);87 68 88 69 return sess;
Note:
See TracChangeset
for help on using the changeset viewer.