Changeset cf2af94 in mainline for uspace/lib/net/generic/packet_remote.c
- Timestamp:
- 2011-02-09T11:46:47Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cb15135a
- Parents:
- a49c4002 (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/lib/net/generic/packet_remote.c
ra49c4002 rcf2af94 38 38 #include <async.h> 39 39 #include <errno.h> 40 #include <ipc/ipc.h>41 40 #include <ipc/packet.h> 42 41 #include <sys/mman.h> … … 86 85 } 87 86 88 ipcarg_t result;87 sysarg_t result; 89 88 async_wait_for(message, &result); 90 89 … … 116 115 *packet = pm_find(packet_id); 117 116 if (!*packet) { 118 ipcarg_t size;117 sysarg_t size; 119 118 120 119 rc = async_req_1_1(phone, NET_PACKET_GET_SIZE, packet_id, … … 151 150 size_t max_prefix, size_t max_suffix) 152 151 { 153 ipcarg_t packet_id;154 ipcarg_t size;152 sysarg_t packet_id; 153 sysarg_t size; 155 154 int rc; 156 155 … … 182 181 packet_t *packet_get_1_remote(int phone, size_t content) 183 182 { 184 ipcarg_t packet_id;185 ipcarg_t size;183 sysarg_t packet_id; 184 sysarg_t size; 186 185 int rc; 187 186
Note:
See TracChangeset
for help on using the changeset viewer.