Changeset 55091847 in mainline


Ignore:
Timestamp:
2011-06-22T13:30:51Z (14 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6b82009
Parents:
bf172825
Message:

unbreak networking

Location:
uspace/lib/net
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/net/il/il_skel.c

    rbf172825 r55091847  
    4141#include <net_interface.h>
    4242#include <net/modules.h>
     43#include <async_obsolete.h>
    4344
    4445// FIXME: remove this header
     
    118119                goto out;
    119120       
    120         rc = async_connect_to_me(PHONE_NS, service, 0, 0, NULL, NULL);
     121        rc = async_obsolete_connect_to_me(PHONE_NS, service, 0, 0, NULL, NULL);
    121122        if (rc != EOK)
    122123                goto out;
  • uspace/lib/net/nil/nil_skel.c

    rbf172825 r55091847  
    4141#include <net_interface.h>
    4242#include <net/modules.h>
     43#include <async_obsolete.h>
    4344
    4445// FIXME: remove this header
     
    118119                goto out;
    119120       
    120         rc = async_connect_to_me(PHONE_NS, service, 0, 0, NULL, NULL);
     121        rc = async_obsolete_connect_to_me(PHONE_NS, service, 0, 0, NULL, NULL);
    121122        if (rc != EOK)
    122123                goto out;
  • uspace/lib/net/tl/tl_skel.c

    rbf172825 r55091847  
    4141#include <net_interface.h>
    4242#include <net/modules.h>
     43#include <async_obsolete.h>
    4344
    4445// FIXME: remove this header
     
    121122                goto out;
    122123       
    123         rc = async_connect_to_me(PHONE_NS, service, 0, 0, NULL, NULL);
     124        rc = async_obsolete_connect_to_me(PHONE_NS, service, 0, 0, NULL, NULL);
    124125        if (rc != EOK)
    125126                goto out;
Note: See TracChangeset for help on using the changeset viewer.