Changeset 61eb2ce2 in mainline for uspace/lib/c/generic/async/server.c
- Timestamp:
- 2023-02-05T22:03:19Z (2 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b596d0d
- Parents:
- 07700ed
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-02-05 22:01:46)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-02-05 22:03:19)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async/server.c
r07700ed r61eb2ce2 250 250 251 251 /** Operations for the client hash table. */ 252 static hash_table_ops_t client_hash_table_ops = {252 static const hash_table_ops_t client_hash_table_ops = { 253 253 .hash = client_hash, 254 254 .key_hash = client_key_hash, … … 511 511 512 512 /** Operations for the notification hash table. */ 513 static hash_table_ops_t notification_hash_table_ops = {513 static const hash_table_ops_t notification_hash_table_ops = { 514 514 .hash = notification_hash, 515 515 .key_hash = notification_key_hash,
Note:
See TracChangeset
for help on using the changeset viewer.