Changes in uspace/app/trace/proto.c [0db0df2:5e801dc] in mainline
- File:
-
- 1 edited
-
uspace/app/trace/proto.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/trace/proto.c
r0db0df2 r5e801dc 69 69 } 70 70 71 static bool srv_proto_key_equal(const void *key, size_t hash,const ht_link_t *item)71 static bool srv_proto_key_equal(const void *key, const ht_link_t *item) 72 72 { 73 73 const int *n = key; … … 76 76 } 77 77 78 static consthash_table_ops_t srv_proto_ops = {78 static hash_table_ops_t srv_proto_ops = { 79 79 .hash = srv_proto_hash, 80 80 .key_hash = srv_proto_key_hash, … … 96 96 } 97 97 98 static bool method_oper_key_equal(const void *key, size_t hash,const ht_link_t *item)98 static bool method_oper_key_equal(const void *key, const ht_link_t *item) 99 99 { 100 100 const int *n = key; … … 103 103 } 104 104 105 static consthash_table_ops_t method_oper_ops = {105 static hash_table_ops_t method_oper_ops = { 106 106 .hash = method_oper_hash, 107 107 .key_hash = method_oper_key_hash,
Note:
See TracChangeset
for help on using the changeset viewer.
