Changeset 7fb2ce3 in mainline for uspace/srv/net/structures/packet/packet_remote.c
- Timestamp:
- 2010-02-17T00:27:50Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f430f58
- Parents:
- 61ee6df
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/structures/packet/packet_remote.c
r61ee6df r7fb2ce3 101 101 ERROR_DECLARE; 102 102 103 packet_id_tpacket_id;103 ipcarg_t packet_id; 104 104 ipcarg_t size; 105 105 packet_t packet; 106 106 107 if( ERROR_OCCURRED( async_req_4_2( phone, NET_PACKET_CREATE_4, max_content, addr_len, max_prefix, max_suffix, ( ipcarg_t * )& packet_id, & size ))){107 if( ERROR_OCCURRED( async_req_4_2( phone, NET_PACKET_CREATE_4, max_content, addr_len, max_prefix, max_suffix, & packet_id, & size ))){ 108 108 return NULL; 109 109 } … … 120 120 ERROR_DECLARE; 121 121 122 packet_id_t packet_id;122 ipcarg_t packet_id; 123 123 ipcarg_t size; 124 124 packet_t packet; 125 125 126 if( ERROR_OCCURRED( async_req_1_2( phone, NET_PACKET_CREATE_1, content, ( ipcarg_t * )& packet_id, & size ))){126 if( ERROR_OCCURRED( async_req_1_2( phone, NET_PACKET_CREATE_1, content, & packet_id, & size ))){ 127 127 return NULL; 128 128 }
Note:
See TracChangeset
for help on using the changeset viewer.