Changeset 95a47b0 in mainline for uspace/lib/c/generic/async/server.c


Ignore:
Timestamp:
2019-02-06T13:25:12Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ab87db5
Parents:
fafb8e5
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-02 14:30:19)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-06 13:25:12)
Message:

Turn ipc_get_*/ipc_set_* into functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/async/server.c

    rfafb8e5 r95a47b0  
    656656        }
    657657
    658         ht_link_t *link = hash_table_find(&notification_hash_table,
    659             &ipc_get_imethod(call));
     658        sysarg_t imethod = ipc_get_imethod(call);
     659        ht_link_t *link = hash_table_find(&notification_hash_table, &imethod);
    660660        if (!link) {
    661661                /* Invalid notification. */
Note: See TracChangeset for help on using the changeset viewer.