Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/net/generic/packet_remote.c

    r46d4d9f rffa2c8ef  
    3838#include <async.h>
    3939#include <errno.h>
    40 #include <ipc/ipc.h>
    4140#include <ipc/packet.h>
    4241#include <sys/mman.h>
     
    8685        }
    8786       
    88         ipcarg_t result;
     87        sysarg_t result;
    8988        async_wait_for(message, &result);
    9089       
     
    116115        *packet = pm_find(packet_id);
    117116        if (!*packet) {
    118                 ipcarg_t size;
     117                sysarg_t size;
    119118               
    120119                rc = async_req_1_1(phone, NET_PACKET_GET_SIZE, packet_id,
     
    151150    size_t max_prefix, size_t max_suffix)
    152151{
    153         ipcarg_t packet_id;
    154         ipcarg_t size;
     152        sysarg_t packet_id;
     153        sysarg_t size;
    155154        int rc;
    156155       
     
    182181packet_t *packet_get_1_remote(int phone, size_t content)
    183182{
    184         ipcarg_t packet_id;
    185         ipcarg_t size;
     183        sysarg_t packet_id;
     184        sysarg_t size;
    186185        int rc;
    187186       
Note: See TracChangeset for help on using the changeset viewer.