Changeset 17aca1c in mainline for uspace/srv/net/tl/tcp/tcp.c
- Timestamp:
- 2011-02-04T20:56:52Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0397e5a4, e29e09cf
- Parents:
- e778543 (diff), 0b37882 (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/srv/net/tl/tcp/tcp.c
re778543 r17aca1c 44 44 #include <errno.h> 45 45 46 #include <ipc/ipc.h>47 46 #include <ipc/services.h> 48 47 #include <ipc/net.h> … … 1506 1505 1507 1506 /* Release the application phone */ 1508 ipc_hangup(app_phone);1507 async_hangup(app_phone); 1509 1508 1510 1509 printf("release\n"); … … 2454 2453 SERVICE_TCP, IPC_GET_ERROR(*icall)); 2455 2454 2456 ipc_answer_0(iid, (sysarg_t) rc);2455 async_answer_0(iid, (sysarg_t) rc); 2457 2456 break; 2458 2457 default: 2459 ipc_answer_0(iid, (sysarg_t) ENOTSUP);2458 async_answer_0(iid, (sysarg_t) ENOTSUP); 2460 2459 } 2461 2460
Note:
See TracChangeset
for help on using the changeset viewer.