Changeset 46b881c in mainline for uspace/srv/net/tl/udp/udp.c
- Timestamp:
- 2011-01-29T11:36:41Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0b6931a, 8add9ca5
- Parents:
- e26a4633 (diff), ffa2c8ef (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/udp/udp.c
re26a4633 r46b881c 40 40 #include <malloc.h> 41 41 #include <stdio.h> 42 #include <ipc/ipc.h>43 42 #include <ipc/services.h> 44 43 #include <ipc/net.h> … … 354 353 SERVICE_UDP, IPC_GET_ERROR(*icall)); 355 354 356 ipc_answer_0(iid, (sysarg_t) rc);355 async_answer_0(iid, (sysarg_t) rc); 357 356 break; 358 357 default: 359 ipc_answer_0(iid, (sysarg_t) ENOTSUP);358 async_answer_0(iid, (sysarg_t) ENOTSUP); 360 359 } 361 360 … … 868 867 869 868 /* Release the application phone */ 870 ipc_hangup(app_phone);869 async_hangup(app_phone); 871 870 872 871 /* Release all local sockets */
Note:
See TracChangeset
for help on using the changeset viewer.