Changeset e1c6dde9 in mainline
- Timestamp:
- 2011-12-16T18:37:01Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 415578ef
- Parents:
- ab9378b4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tl/tcp/conn.c
rab9378b4 re1c6dde9 221 221 void tcp_conn_add(tcp_conn_t *conn) 222 222 { 223 tcp_conn_addref(conn); 223 224 fibril_mutex_lock(&conn_list_lock); 224 225 list_append(&conn->link, &conn_list); … … 235 236 list_remove(&conn->link); 236 237 fibril_mutex_unlock(&conn_list_lock); 238 tcp_conn_delref(conn); 237 239 } 238 240
Note:
See TracChangeset
for help on using the changeset viewer.