Changeset d3a1ade3 in mainline for uspace/srv/vfs/vfs_register.c


Ignore:
Timestamp:
2010-12-26T17:25:57Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d1c041a
Parents:
d3cce52
Message:

'Exchange' is better than 'transaction', because it does not evoke ACID semantics (which we don't have).

File:
1 edited

Legend:

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

    rd3cce52 rd3a1ade3  
    274274                if (fs->fs_handle == handle) {
    275275                        fibril_mutex_unlock(&fs_head_lock);
    276                         phone = async_transaction_begin(&fs->session);
     276                        phone = async_exchange_begin(&fs->session);
    277277
    278278                        assert(phone > 0);
     
    298298                if (fs->fs_handle == handle) {
    299299                        fibril_mutex_unlock(&fs_head_lock);
    300                         async_transaction_end(&fs->session, phone);
     300                        async_exchange_end(&fs->session, phone);
    301301                        return;
    302302                }
Note: See TracChangeset for help on using the changeset viewer.