Subversion Repositories HelenOS

Rev

Rev 2627 | Rev 2637 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2627 Rev 2635
Line 124... Line 124...
124
{
124
{
125
    int vfs_phone;
125
    int vfs_phone;
126
 
126
 
127
    printf("FAT: HelenOS FAT file system server.\n");
127
    printf("FAT: HelenOS FAT file system server.\n");
128
 
128
 
129
    vfs_phone = ipc_connect_me_to(PHONE_NS, SERVICE_VFS, 0);
129
    vfs_phone = ipc_connect_me_to(PHONE_NS, SERVICE_VFS, 0, 0);
130
    while (vfs_phone < EOK) {
130
    while (vfs_phone < EOK) {
131
        usleep(10000);
131
        usleep(10000);
132
        vfs_phone = ipc_connect_me_to(PHONE_NS, SERVICE_VFS, 0);
132
        vfs_phone = ipc_connect_me_to(PHONE_NS, SERVICE_VFS, 0, 0);
133
    }
133
    }
134
   
134
   
135
    /*
135
    /*
136
     * Tell VFS that we are here and want to get registered.
136
     * Tell VFS that we are here and want to get registered.
137
     * We use the async framework because VFS will answer the request
137
     * We use the async framework because VFS will answer the request