Changeset b61d47d in mainline for uspace/srv/fs/fat/fat.c


Ignore:
Timestamp:
2007-12-02T20:00:14Z (16 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
90c35436
Parents:
8df2eab
Message:

Function ipc_connect_me_to sends 3 user defined arguments now.
One argument added also to ipc_forward_fast.
Fixed devmap and improved its test.

File:
1 edited

Legend:

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

    r8df2eab rb61d47d  
    127127        printf("FAT: HelenOS FAT file system server.\n");
    128128
    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);
    130130        while (vfs_phone < EOK) {
    131131                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);
    133133        }
    134134       
Note: See TracChangeset for help on using the changeset viewer.