Changeset 92574f4 in mainline for uspace/srv/fs/tmpfs/tmpfs.c


Ignore:
Timestamp:
2011-02-24T12:03:27Z (13 years ago)
Author:
Lubos Slovak <lubos.slovak@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e7b7ebd5
Parents:
4837092 (diff), a80849c (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:

Merged development (changes in DDF, etc.).

Conflicts in uspace/drv/usbkbd/main.c

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/tmpfs/tmpfs.c

    r4837092 r92574f4  
    4242
    4343#include "tmpfs.h"
    44 #include <ipc/ipc.h>
    4544#include <ipc/services.h>
     45#include <ipc/ns.h>
    4646#include <async.h>
    4747#include <errno.h>
     
    9090                 * created by IPC_M_CONNECT_TO_ME.
    9191                 */
    92                 ipc_answer_0(iid, EOK);
     92                async_answer_0(iid, EOK);
    9393        }
    9494       
     
    142142                        break;
    143143                default:
    144                         ipc_answer_0(callid, ENOTSUP);
     144                        async_answer_0(callid, ENOTSUP);
    145145                        break;
    146146                }
     
    157157        }
    158158
    159         int vfs_phone = ipc_connect_me_to_blocking(PHONE_NS, SERVICE_VFS, 0, 0);
     159        int vfs_phone = service_connect_blocking(SERVICE_VFS, 0, 0);
    160160        if (vfs_phone < EOK) {
    161161                printf(NAME ": Unable to connect to VFS\n");
Note: See TracChangeset for help on using the changeset viewer.