Changeset 7907cf9 in mainline
- 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
- Location:
- uspace
- Files:
-
- 1 added
- 1 deleted
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/Makefile
r3750c06 r7907cf9 87 87 generic/ipc.c \ 88 88 generic/async.c \ 89 generic/async_ rel.c \89 generic/async_sess.c \ 90 90 generic/loader.c \ 91 91 generic/getopt.c \ -
uspace/lib/c/generic/libc.c
r3750c06 r7907cf9 50 50 #include <ipc/ipc.h> 51 51 #include <async.h> 52 #include <async_ rel.h>52 #include <async_sess.h> 53 53 #include <as.h> 54 54 #include <loader/pcb.h> … … 66 66 __heap_init(); 67 67 __async_init(); 68 (void) async_ rel_init();68 (void) async_sess_init(); 69 69 fibril_t *fibril = fibril_setup(); 70 70 __tcb_set(fibril->tcb); -
uspace/lib/c/include/async_sess.h
r3750c06 r7907cf9 33 33 */ 34 34 35 #ifndef LIBC_ASYNC_ REL_H_36 #define LIBC_ASYNC_ REL_H_35 #ifndef LIBC_ASYNC_SESS_H_ 36 #define LIBC_ASYNC_SESS_H_ 37 37 38 extern int async_ rel_init(void);39 extern int async_ relation_create(int);40 extern void async_ relation_destroy(int, int);38 extern int async_sess_init(void); 39 extern int async_transaction_begin(int); 40 extern void async_transaction_end(int, int); 41 41 42 42 #endif -
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.