Ignore:
Timestamp:
2011-02-09T11:46:47Z (14 years ago)
Author:
Martin Sucha <sucha14@…>
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.
Message:

Merge mainline changes

Local modifications:

  • change pipefs and ext2 to build again (use async_* calls instead of ipc_*)
File:
1 edited

Legend:

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

    ra49c4002 rcf2af94  
    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.