Changes in uspace/lib/c/generic/async/server.c [3951046:61eb2ce2] in mainline
- File:
-
- 1 edited
-
uspace/lib/c/generic/async/server.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async/server.c
r3951046 r61eb2ce2 1 1 /* 2 * Copyright (c) 2025 Jiri Svoboda3 2 * Copyright (c) 2006 Ondrej Palkovsky 4 3 * All rights reserved. … … 243 242 } 244 243 245 static bool client_key_equal(const void *key, size_t,const ht_link_t *item)244 static bool client_key_equal(const void *key, const ht_link_t *item) 246 245 { 247 246 const task_id_t *in_task_id = key; … … 503 502 } 504 503 505 static bool notification_key_equal(const void *key, size_t hash,const ht_link_t *item)504 static bool notification_key_equal(const void *key, const ht_link_t *item) 506 505 { 507 506 const sysarg_t *id = key; … … 956 955 void *data; 957 956 async_port_handler_t handler = 958 async_get_ interface_handler(iface, 0, &data);957 async_get_port_handler(iface, 0, &data); 959 958 960 959 async_new_connection(conn, call->task_id, call, handler, data);
Note:
See TracChangeset
for help on using the changeset viewer.
