Changeset 2989c7e in mainline for uspace/srv/net/tcp/ucall.c
- Timestamp:
- 2015-05-25T21:04:33Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ab6326bc
- Parents:
- 58e9dec
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tcp/ucall.c
r58e9dec r2989c7e 35 35 */ 36 36 37 #include <errno.h> 37 38 #include <fibril_synch.h> 38 39 #include <io/log.h> … … 68 69 { 69 70 tcp_conn_t *nconn; 71 int rc; 70 72 71 73 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_uc_open(%p, %s, %s, %p)", … … 74 76 75 77 nconn = tcp_conn_new(epp); 76 tcp_conn_add(nconn); 78 rc = tcp_conn_add(nconn); 79 if (rc != EOK) { 80 tcp_conn_delete(nconn); 81 return TCP_EEXISTS; 82 } 83 77 84 tcp_conn_lock(nconn); 78 85
Note:
See TracChangeset
for help on using the changeset viewer.