Ignore:
File:
1 edited

Legend:

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

    r5284faa r3951046  
    11/*
     2 * Copyright (c) 2025 Jiri Svoboda
    23 * Copyright (c) 2006 Ondrej Palkovsky
    34 * All rights reserved.
     
    242243}
    243244
    244 static bool client_key_equal(const void *key, const ht_link_t *item)
     245static bool client_key_equal(const void *key, size_t, const ht_link_t *item)
    245246{
    246247        const task_id_t *in_task_id = key;
     
    250251
    251252/** Operations for the client hash table. */
    252 static hash_table_ops_t client_hash_table_ops = {
     253static const hash_table_ops_t client_hash_table_ops = {
    253254        .hash = client_hash,
    254255        .key_hash = client_key_hash,
     
    502503}
    503504
    504 static bool notification_key_equal(const void *key, const ht_link_t *item)
     505static bool notification_key_equal(const void *key, size_t hash, const ht_link_t *item)
    505506{
    506507        const sysarg_t *id = key;
     
    511512
    512513/** Operations for the notification hash table. */
    513 static hash_table_ops_t notification_hash_table_ops = {
     514static const hash_table_ops_t notification_hash_table_ops = {
    514515        .hash = notification_hash,
    515516        .key_hash = notification_key_hash,
     
    955956                void *data;
    956957                async_port_handler_t handler =
    957                     async_get_port_handler(iface, 0, &data);
     958                    async_get_interface_handler(iface, 0, &data);
    958959
    959960                async_new_connection(conn, call->task_id, call, handler, data);
Note: See TracChangeset for help on using the changeset viewer.