Changeset 866e627 in mainline
- Timestamp:
- 2011-08-17T20:34:35Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7171760
- Parents:
- df02460
- Location:
- uspace/lib/c
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/vfs/vfs.c
rdf02460 r866e627 69 69 * 70 70 */ 71 staticasync_exch_t *vfs_exchange_begin(void)71 async_exch_t *vfs_exchange_begin(void) 72 72 { 73 73 fibril_mutex_lock(&vfs_mutex); … … 87 87 * 88 88 */ 89 staticvoid vfs_exchange_end(async_exch_t *exch)89 void vfs_exchange_end(async_exch_t *exch) 90 90 { 91 91 async_exchange_end(exch); -
uspace/lib/c/include/loader/loader.h
rdf02460 r866e627 38 38 39 39 #include <task.h> 40 #include <vfs/vfs.h> 40 41 typedef struct fdi_node fdi_node_t; 41 42 42 43 /** Forward declararion */ -
uspace/lib/c/include/task.h
rdf02460 r866e627 37 37 38 38 #include <sys/types.h> 39 #include <vfs/vfs.h> 39 40 typedef struct fdi_node fdi_node_t; 40 41 41 42 typedef uint64_t task_id_t; -
uspace/lib/c/include/vfs/vfs.h
rdf02460 r866e627 40 40 #include <ipc/devmap.h> 41 41 #include <stdio.h> 42 #include <async.h> 42 43 43 44 enum vfs_change_state_type { … … 51 52 * 52 53 */ 53 typedef struct {54 typedef struct fdi_node { 54 55 fs_handle_t fs_handle; 55 56 devmap_handle_t devmap_handle; … … 69 70 extern int fnode(FILE *, fdi_node_t *); 70 71 72 extern async_exch_t *vfs_exchange_begin(void); 73 extern void vfs_exchange_end(async_exch_t *); 74 71 75 #endif 72 76
Note:
See TracChangeset
for help on using the changeset viewer.