Changeset 61eb2ce2 in mainline for uspace/srv/ns/task.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/srv/ns/task.c
r07700ed r61eb2ce2 80 80 81 81 /** Operations for task hash table. */ 82 static hash_table_ops_t task_hash_table_ops = {82 static const hash_table_ops_t task_hash_table_ops = { 83 83 .hash = task_hash, 84 84 .key_hash = task_key_hash, … … 131 131 132 132 /** Operations for task hash table. */ 133 static hash_table_ops_t p2i_ops = {133 static const hash_table_ops_t p2i_ops = { 134 134 .hash = p2i_hash, 135 135 .key_hash = p2i_key_hash,
Note:
See TracChangeset
for help on using the changeset viewer.