Changeset ffa2c8ef in mainline for uspace/srv/net/tl/udp/udp.c
- Timestamp:
- 2011-01-29T11:36:08Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 46b881c
- Parents:
- 64d2b10
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tl/udp/udp.c
r64d2b10 rffa2c8ef 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.