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

    rfec7ba0 r5b3e74a  
    136136
    137137        async_exch_t *exch = async_exchange_begin(driver->sess);
    138         async_forward_fast(icall, exch, INTERFACE_DDF_CLIENT, handle, 0, IPC_FF_NONE);
     138        async_forward_1(icall, exch, INTERFACE_DDF_CLIENT, handle, IPC_FF_NONE);
    139139        async_exchange_end(exch);
    140140
     
    215215
    216216        async_exch_t *exch = async_exchange_begin(driver->sess);
    217         async_forward_fast(icall, exch, INTERFACE_DDF_DRIVER, fun_handle, 0, IPC_FF_NONE);
     217        async_forward_1(icall, exch, INTERFACE_DDF_DRIVER, fun_handle, IPC_FF_NONE);
    218218        async_exchange_end(exch);
    219219
     
    250250
    251251        async_exch_t *exch = async_exchange_begin(driver->sess);
    252         async_forward_fast(icall, exch, iface, handle, 0, IPC_FF_NONE);
     252        async_forward_1(icall, exch, iface, handle, IPC_FF_NONE);
    253253        async_exchange_end(exch);
    254254
Note: See TracChangeset for help on using the changeset viewer.