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


Ignore:
Timestamp:
2019-01-11T19:41:27Z (5 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/clonable.c

    rfec7ba0 r5b3e74a  
    9494
    9595        async_exch_t *exch = async_exchange_begin(sess);
    96         async_forward_fast(&csr->call, exch, csr->iface,
    97             IPC_GET_ARG3(csr->call), 0, IPC_FF_NONE);
     96        async_forward_1(&csr->call, exch, csr->iface,
     97            IPC_GET_ARG3(csr->call), IPC_FF_NONE);
    9898        async_exchange_end(exch);
    9999
Note: See TracChangeset for help on using the changeset viewer.