Changeset e950803 in mainline for uspace/lib/c/generic/async.c
- Timestamp:
- 2011-02-03T20:20:01Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bfe43d5
- Parents:
- bd81386 (diff), b366a1bc (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async.c
rbd81386 re950803 294 294 } 295 295 296 /** Connection hash table removal callback function.297 *298 * This function is called whenever a connection is removed from the connection299 * hash table.300 *301 * @param item Connection hash table item being removed.302 *303 */304 296 static void conn_remove(link_t *item) 305 297 { 306 free(hash_table_get_instance(item, connection_t, link));307 298 } 308 299 … … 647 638 ipc_answer_0(FIBRIL_connection->close_callid, EOK); 648 639 640 free(FIBRIL_connection); 649 641 return 0; 650 642 }
Note:
See TracChangeset
for help on using the changeset viewer.