Ignore:
File:
1 edited

Legend:

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

    r0db0df2 r5e801dc  
    5050#include <as.h>
    5151#include <abi/mm/as.h>
     52#include "../private/libc.h"
    5253#include "../private/fibril.h"
    5354
     
    114115}
    115116
    116 static bool interface_key_equal(const void *key, size_t hash, const ht_link_t *item)
     117static bool interface_key_equal(const void *key, const ht_link_t *item)
    117118{
    118119        const iface_t *iface = key;
     
    122123
    123124/** Operations for the port hash table. */
    124 static const hash_table_ops_t interface_hash_table_ops = {
     125static hash_table_ops_t interface_hash_table_ops = {
    125126        .hash = interface_hash,
    126127        .key_hash = interface_key_hash,
     
    142143}
    143144
    144 static bool port_key_equal(const void *key, size_t hash, const ht_link_t *item)
     145static bool port_key_equal(const void *key, const ht_link_t *item)
    145146{
    146147        const port_id_t *port_id = key;
     
    150151
    151152/** Operations for the port hash table. */
    152 static const hash_table_ops_t port_hash_table_ops = {
     153static hash_table_ops_t port_hash_table_ops = {
    153154        .hash = port_hash,
    154155        .key_hash = port_key_hash,
Note: See TracChangeset for help on using the changeset viewer.