Skip to content

Commit

Permalink
fix rebase conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Lockna committed Sep 18, 2024
1 parent cf4ab2b commit 7cb71f8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions kernel/src/fs/vfs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@ use alloc::{
};
use libxernel::boot::InitAtBoot;
use libxernel::sync::Spinlock;
use libxernel::boot::InitAtBoot;

use super::{
mount::{Mount, VfsOps},
pathbuf::PathBuf,
tmpfs::Tmpfs,
vnode::{VNode, VNodeOperations},
vnode::VNode,
{Error, Result},
};

Expand Down
1 change: 0 additions & 1 deletion kernel/src/sched/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ pub struct Process {
pub children: Vec<Arc<Spinlock<Process>>>,
pub threads: Vec<Arc<Spinlock<Thread>>>,
pub fds: BTreeMap<usize, File>,
pub is_kernel_process: bool,
pub kernel_thread_stack_top: usize,
pub thread_id_counter: usize,
pub vm: Vm,
Expand Down

0 comments on commit 7cb71f8

Please sign in to comment.