Changeset 16b0ac3 in mainline for uspace/srv/net/udp/assoc.c
- Timestamp:
- 2019-10-12T00:22:17Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 25525133
- Parents:
- a163d10
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/udp/assoc.c
ra163d10 r16b0ac3 72 72 } 73 73 74 /** Finalize associations. */ 75 void udp_assocs_fini(void) 76 { 77 assert(list_empty(&assoc_list)); 78 79 amap_destroy(amap); 80 amap = NULL; 81 } 82 74 83 /** Create new association structure. 75 84 * … … 174 183 175 184 assert(assoc->deleted == false); 185 assoc->deleted = true; 176 186 udp_assoc_delref(assoc); 177 assoc->deleted = true;178 187 } 179 188
Note:
See TracChangeset
for help on using the changeset viewer.