Changeset adb5fe3 in mainline for uspace/lib/libfs
- Timestamp:
- 2008-11-09T21:24:59Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b24786a3
- Parents:
- 9a3d5f0
- Location:
- uspace/lib/libfs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libfs/libfs.c
r9a3d5f0 radb5fe3 192 192 void *nodep; 193 193 if (lflag & L_CREATE) 194 nodep = ops->create( lflag);194 nodep = ops->create(dev_handle, lflag); 195 195 else 196 196 nodep = ops->node_get(dev_handle, … … 263 263 void *nodep; 264 264 if (lflag & L_CREATE) 265 nodep = ops->create( lflag);265 nodep = ops->create(dev_handle, lflag); 266 266 else 267 267 nodep = ops->node_get(dev_handle, index); -
uspace/lib/libfs/libfs.h
r9a3d5f0 radb5fe3 46 46 void * (* node_get)(dev_handle_t, fs_index_t); 47 47 void (* node_put)(void *); 48 void * (* create)( int);48 void * (* create)(dev_handle_t, int); 49 49 int (* destroy)(void *); 50 50 bool (* link)(void *, void *, const char *);
Note:
See TracChangeset
for help on using the changeset viewer.