Changes in uspace/lib/c/generic/async/server.c [5284faa:3951046] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async/server.c
r5284faa r3951046 1 1 /* 2 * Copyright (c) 2025 Jiri Svoboda 2 3 * Copyright (c) 2006 Ondrej Palkovsky 3 4 * All rights reserved. … … 242 243 } 243 244 244 static bool client_key_equal(const void *key, const ht_link_t *item)245 static bool client_key_equal(const void *key, size_t, const ht_link_t *item) 245 246 { 246 247 const task_id_t *in_task_id = key; … … 250 251 251 252 /** Operations for the client hash table. */ 252 static hash_table_ops_t client_hash_table_ops = {253 static const hash_table_ops_t client_hash_table_ops = { 253 254 .hash = client_hash, 254 255 .key_hash = client_key_hash, … … 502 503 } 503 504 504 static bool notification_key_equal(const void *key, const ht_link_t *item)505 static bool notification_key_equal(const void *key, size_t hash, const ht_link_t *item) 505 506 { 506 507 const sysarg_t *id = key; … … 511 512 512 513 /** Operations for the notification hash table. */ 513 static hash_table_ops_t notification_hash_table_ops = {514 static const hash_table_ops_t notification_hash_table_ops = { 514 515 .hash = notification_hash, 515 516 .key_hash = notification_key_hash, … … 955 956 void *data; 956 957 async_port_handler_t handler = 957 async_get_ port_handler(iface, 0, &data);958 async_get_interface_handler(iface, 0, &data); 958 959 959 960 async_new_connection(conn, call->task_id, call, handler, data);
Note:
See TracChangeset
for help on using the changeset viewer.