Changeset 7907cf9 in mainline for uspace/srv


Ignore:
Timestamp:
2010-12-26T11:01:44Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c1c0184
Parents:
3750c06
Message:

Clean up nomenclature of async sessions (formerly relations).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs_register.c

    r3750c06 r7907cf9  
    3939#include <ipc/services.h>
    4040#include <async.h>
    41 #include <async_rel.h>
     41#include <async_sess.h>
    4242#include <fibril.h>
    4343#include <fibril_synch.h>
     
    270270                        fibril_mutex_unlock(&fs_head_lock);
    271271                        fibril_mutex_lock(&fs->phone_lock);
    272                         phone = async_relation_create(fs->phone);
     272                        phone = async_transaction_begin(fs->phone);
    273273                        fibril_mutex_unlock(&fs->phone_lock);
    274274
     
    296296                        fibril_mutex_unlock(&fs_head_lock);
    297297                        fibril_mutex_lock(&fs->phone_lock);
    298                         async_relation_destroy(fs->phone, phone);
     298                        async_transaction_end(fs->phone, phone);
    299299                        fibril_mutex_unlock(&fs->phone_lock);
    300300                        return;
Note: See TracChangeset for help on using the changeset viewer.