Changeset 5b3e74a in mainline for uspace/srv/ns/service.c


Ignore:
Timestamp:
2019-01-11T19:41:27Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Children:
394e22f
Parents:
fec7ba0
Message:

Remove async "fast" and "slow" functions from public interface

"fast" and "slow" paths are implementation detail.
All macros in <async.h> are turned into external functions, so that
this implementation detail doesn't leak. Additionally, removing macros is
A Good Thing on its own, e.g. helping C++ interoperability.

File:
1 edited

Legend:

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

    rfec7ba0 r5b3e74a  
    154154{
    155155        async_exch_t *exch = async_exchange_begin(sess);
    156         async_forward_fast(call, exch, iface, IPC_GET_ARG3(*call), 0,
    157             IPC_FF_NONE);
     156        async_forward_1(call, exch, iface, IPC_GET_ARG3(*call), IPC_FF_NONE);
    158157        async_exchange_end(exch);
    159158}
Note: See TracChangeset for help on using the changeset viewer.