Changes in uspace/lib/c/generic/async/server.c [61eb2ce2:3951046] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async/server.c
r61eb2ce2 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; … … 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; … … 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.