Skip to content
Snippets Groups Projects

Redoxfs 0.5.0

Merged Jeremy Soller requested to merge redoxfs-0.5.0 into master
3 files
+ 289
104
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 1
1
@@ -99,7 +99,7 @@ fn with_redoxfs<P, T, F>(disk_path: &P, bootloader: &[u8], callback: F)
@@ -99,7 +99,7 @@ fn with_redoxfs<P, T, F>(disk_path: &P, bootloader: &[u8], callback: F)
}
}
let ctime = time::SystemTime::now().duration_since(time::UNIX_EPOCH).unwrap();
let ctime = time::SystemTime::now().duration_since(time::UNIX_EPOCH).unwrap();
let fs = FileSystem::create_reserved(disk, bootloader, ctime.as_secs(), ctime.subsec_nanos()).unwrap();
let fs = FileSystem::create_reserved(disk, None, bootloader, ctime.as_secs(), ctime.subsec_nanos()).unwrap();
let callback_mutex = sync::Arc::new(sync::Mutex::new(callback));
let callback_mutex = sync::Arc::new(sync::Mutex::new(callback));
let join_handle = redoxfs::mount(fs, mount_path, move |real_path| {
let join_handle = redoxfs::mount(fs, mount_path, move |real_path| {
Loading