Changeset 1e4d4f85 in rtems
- Timestamp:
- 07/24/03 19:54:55 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- ff393f2
- Parents:
- 129b4a79
- Location:
- cpukit/libfs/src/imfs
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libfs/src/imfs/imfs_init.c
r129b4a79 r1e4d4f85 61 61 ) 62 62 { 63 IMFS_initialize_support(63 return IMFS_initialize_support( 64 64 temp_mt_entry, 65 65 &IMFS_ops, … … 68 68 &IMFS_directory_handlers 69 69 ); 70 return 0;71 70 } -
cpukit/libfs/src/imfs/imfs_initsupp.c
r129b4a79 r1e4d4f85 25 25 #include "imfs.h" 26 26 #include <rtems/libio_.h> 27 #include <rtems/seterr.h> 27 28 28 29 #if defined(IMFS_DEBUG) … … 69 70 if ( !fs_info ){ 70 71 free(temp_mt_entry->mt_fs_root.node_access); 71 r eturn 1;72 rtems_set_errno_and_return_minus_one(ENOMEM); 72 73 } 73 74 temp_mt_entry->fs_info = fs_info; -
cpukit/libfs/src/imfs/miniimfs_init.c
r129b4a79 r1e4d4f85 61 61 ) 62 62 { 63 IMFS_initialize_support(63 return IMFS_initialize_support( 64 64 temp_mt_entry, 65 65 &miniIMFS_ops, … … 68 68 &rtems_filesystem_null_handlers /* for directories */ 69 69 ); 70 return 0;71 70 } 72 71
Note: See TracChangeset
for help on using the changeset viewer.