Changeset 26e7d6d in mainline for uspace/lib/packet/generic/packet_server.c
- Timestamp:
- 2011-09-19T16:31:00Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a347a11
- Parents:
- 3842a955 (diff), 086290d (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/lib/packet/generic/packet_server.c
r3842a955 r26e7d6d 36 36 37 37 #include <packet_server.h> 38 39 38 #include <align.h> 40 39 #include <assert.h> … … 317 316 * packet_release_wrapper() function. 318 317 */ 319 int 320 packet_server_message(ipc_callid_t callid, ipc_call_t *call, ipc_call_t *answer, 318 int packet_server_message(ipc_callid_t callid, ipc_call_t *call, ipc_call_t *answer, 321 319 size_t *answer_count) 322 320 { 323 321 packet_t *packet; 324 325 *answer_count = 0;326 322 327 323 if (!IPC_GET_IMETHOD(*call)) 328 324 return EOK; 329 325 326 *answer_count = 0; 330 327 switch (IPC_GET_IMETHOD(*call)) { 331 328 case NET_PACKET_CREATE_1:
Note:
See TracChangeset
for help on using the changeset viewer.