Ignore:
File:
1 edited

Legend:

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

    r3951046 r61eb2ce2  
    11/*
    2  * Copyright (c) 2025 Jiri Svoboda
    32 * Copyright (c) 2006 Ondrej Palkovsky
    43 * All rights reserved.
     
    243242}
    244243
    245 static bool client_key_equal(const void *key, size_t, const ht_link_t *item)
     244static bool client_key_equal(const void *key, const ht_link_t *item)
    246245{
    247246        const task_id_t *in_task_id = key;
     
    503502}
    504503
    505 static bool notification_key_equal(const void *key, size_t hash, const ht_link_t *item)
     504static bool notification_key_equal(const void *key, const ht_link_t *item)
    506505{
    507506        const sysarg_t *id = key;
     
    956955                void *data;
    957956                async_port_handler_t handler =
    958                     async_get_interface_handler(iface, 0, &data);
     957                    async_get_port_handler(iface, 0, &data);
    959958
    960959                async_new_connection(conn, call->task_id, call, handler, data);
Note: See TracChangeset for help on using the changeset viewer.