Changes in uspace/lib/net/generic/packet_remote.c [46d4d9f:ffa2c8ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/generic/packet_remote.c
r46d4d9f rffa2c8ef 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.