From 71a17070b1f8dd10014b2056ce18a271aa06dd2b Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Thu, 18 Aug 2016 09:02:31 -0600 Subject: [PATCH] Remove clone from context --- kernel/context/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/context/mod.rs b/kernel/context/mod.rs index 1dde2eb..d0f7f2e 100644 --- a/kernel/context/mod.rs +++ b/kernel/context/mod.rs @@ -37,7 +37,7 @@ pub fn contexts_mut() -> RwLockWriteGuard<'static, ContextList> { } /// A context, which identifies either a process or a thread -#[derive(Clone, Debug)] +#[derive(Debug)] pub struct Context { /// The open files in the scheme pub files: Vec>