Changeset 5b3e74a in mainline for uspace/srv/locsrv/locsrv.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/locsrv/locsrv.c

    rfec7ba0 r5b3e74a  
    726726
    727727        async_exch_t *exch = async_exchange_begin(svc->server->sess);
    728         async_forward_fast(call, exch, iface, svc->id, 0, IPC_FF_NONE);
     728        async_forward_1(call, exch, iface, svc->id, IPC_FF_NONE);
    729729        async_exchange_end(exch);
    730730
Note: See TracChangeset for help on using the changeset viewer.