Changeset 7907cf9 in mainline for uspace/srv
- Timestamp:
- 2010-12-26T11:01:44Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c1c0184
- Parents:
- 3750c06
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_register.c
r3750c06 r7907cf9 39 39 #include <ipc/services.h> 40 40 #include <async.h> 41 #include <async_ rel.h>41 #include <async_sess.h> 42 42 #include <fibril.h> 43 43 #include <fibril_synch.h> … … 270 270 fibril_mutex_unlock(&fs_head_lock); 271 271 fibril_mutex_lock(&fs->phone_lock); 272 phone = async_ relation_create(fs->phone);272 phone = async_transaction_begin(fs->phone); 273 273 fibril_mutex_unlock(&fs->phone_lock); 274 274 … … 296 296 fibril_mutex_unlock(&fs_head_lock); 297 297 fibril_mutex_lock(&fs->phone_lock); 298 async_ relation_destroy(fs->phone, phone);298 async_transaction_end(fs->phone, phone); 299 299 fibril_mutex_unlock(&fs->phone_lock); 300 300 return;
Note:
See TracChangeset
for help on using the changeset viewer.